kadenios/shared/auth/urls.py

11 lines
203 B
Python

from django.urls import path
from . import views
urlpatterns = [
path(
"election/<int:election_id>/login",
views.ElectionLoginView.as_view(),
name="auth.election",
),
]