automatically apply election results

This commit is contained in:
imperosol
2026-06-04 18:04:26 +02:00
parent 99d8e6e2b8
commit ddc70a9d27
7 changed files with 278 additions and 24 deletions
+6
View File
@@ -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",
),
]