13 lines
415 B
Python
13 lines
415 B
Python
from django.urls import re_path
|
|
|
|
from . import views
|
|
|
|
app_name = 'dav_event_office'
|
|
|
|
urlpatterns = [
|
|
re_path(r'^home$', views.HomeView.as_view(), name='root'),
|
|
re_path(r'^participants$', views.ParticipantListView.as_view(), name='participant-list'),
|
|
re_path(r'^$', views.EventListView.as_view(), name='event-list'),
|
|
re_path(r'^(?P<pk>\d+)/', views.EventDetailView.as_view(), name='event-detail'),
|
|
]
|