12 lines
289 B
Python
12 lines
289 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"election/<int:election_id>/login",
|
|
views.ElectionLoginView.as_view(),
|
|
name="auth.election",
|
|
),
|
|
path("pwd-create", views.CreatePwdAccount.as_view(), name="auth.create-account"),
|
|
]
|