2020-12-21 00:07:07 +01:00
|
|
|
from django.urls import path
|
|
|
|
|
|
|
|
from . import views
|
|
|
|
|
|
|
|
urlpatterns = [
|
2021-01-27 13:52:35 +01:00
|
|
|
path(
|
|
|
|
"election/<int:election_id>/login",
|
|
|
|
views.ElectionLoginView.as_view(),
|
|
|
|
name="auth.election",
|
|
|
|
),
|
2021-04-26 17:54:07 +02:00
|
|
|
path("pwd-create", views.CreatePwdAccount.as_view(), name="auth.create-account"),
|
2020-12-21 00:07:07 +01:00
|
|
|
]
|