2019-10-05 15:58:11 +02:00
|
|
|
from django.urls import path
|
2019-10-08 23:33:46 +02:00
|
|
|
|
2019-10-05 15:58:11 +02:00
|
|
|
from events import views
|
|
|
|
|
|
|
|
app_name = "events"
|
|
|
|
urlpatterns = [
|
|
|
|
path(
|
|
|
|
"csv/participants/<int:event_id>",
|
|
|
|
views.participants_csv,
|
|
|
|
name="csv-participants",
|
|
|
|
)
|
|
|
|
]
|