mirror of
https://github.com/ae-utbm/sith.git
synced 2024-10-31 19:38:04 +00:00
7 lines
157 B
Python
7 lines
157 B
Python
|
from django.conf.urls import url, include
|
||
|
|
||
|
from election.views import *
|
||
|
|
||
|
urlpatterns = [
|
||
|
url(r'^$', ElectionsListView.as_view(), name='election_list'),
|
||
|
]
|