Election bdd + first view

This commit is contained in:
2016-12-05 20:18:03 +01:00
parent 0280a65623
commit d685e9ba29
13 changed files with 197 additions and 1 deletions

7
election/urls.py Normal file
View File

@ -0,0 +1,7 @@
from django.conf.urls import url, include
from election.views import *
urlpatterns = [
url(r'^$', ElectionsListView.as_view(), name='election_list'),
]