12 lines
218 B
Python
12 lines
218 B
Python
from django.urls import path
|
|
|
|
from events import views
|
|
|
|
app_name = "events"
|
|
urlpatterns = [
|
|
path(
|
|
"csv/participants/<int:event_id>",
|
|
views.participants_csv,
|
|
name="csv-participants",
|
|
)
|
|
]
|