mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-18 04:03:22 +00:00
11 lines
379 B
Python
11 lines
379 B
Python
from django.conf.urls import url
|
|
|
|
from election.views import *
|
|
|
|
urlpatterns = [
|
|
url(r'^$', ElectionsListView.as_view(), name='list'),
|
|
url(r'^create$', ElectionCreateView.as_view(), name='create'),
|
|
url(r'^list/create$', ElectionListCreateView.as_view(), name='create_list'),
|
|
url(r'^(?P<election_id>[0-9]+)/detail$', ElectionDetailView.as_view(), name='detail'),
|
|
]
|