forked from DGNum/gestioCOF
12 lines
217 B
Python
12 lines
217 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",
|
||
|
)
|
||
|
]
|