kadenios/shared/auth/urls.py

13 lines
289 B
Python
Raw Normal View History

2020-12-21 00:07:07 +01:00
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"),
2020-12-21 00:07:07 +01:00
]