mirror of
https://github.com/ae-utbm/sith.git
synced 2026-06-04 23:29:24 +00:00
automatically apply election results
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
from django.urls import path
|
||||
|
||||
from election.views import (
|
||||
ApplyResultFragment,
|
||||
CandidatureCreateView,
|
||||
CandidatureDeleteView,
|
||||
CandidatureUpdateView,
|
||||
@@ -56,4 +57,9 @@ urlpatterns = [
|
||||
),
|
||||
path("<int:election_id>/vote/", VoteFormView.as_view(), name="vote"),
|
||||
path("<int:election_id>/detail/", ElectionDetailView.as_view(), name="detail"),
|
||||
path(
|
||||
"fragment/<int:election_id>/apply/",
|
||||
ApplyResultFragment.as_view(),
|
||||
name="apply_result",
|
||||
),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user