Removed useless widget added previously + began voteform

This commit is contained in:
2016-12-21 17:33:16 +01:00
parent 03754aba8a
commit e8ead338d0
4 changed files with 61 additions and 95 deletions

View File

@ -8,5 +8,6 @@ urlpatterns = [
url(r'^list/create$', ElectionListCreateView.as_view(), name='create_list'),
url(r'^role/create$', RoleCreateView.as_view(), name='create_role'),
url(r'^(?P<election_id>[0-9]+)/candidate$', CandidatureCreateView.as_view(), name='candidate'),
url(r'^(?P<election_id>[0-9]+)/vote$', VoteFormView.as_view(), name='vote'),
url(r'^(?P<election_id>[0-9]+)/detail$', ElectionDetailView.as_view(), name='detail'),
]