Sith/election/urls.py

7 lines
157 B
Python
Raw Normal View History

2016-12-05 19:18:03 +00:00
from django.conf.urls import url, include
from election.views import *
urlpatterns = [
url(r'^$', ElectionsListView.as_view(), name='election_list'),
]