mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-02 03:42:26 +02:00
15 lines
420 B
Python
15 lines
420 B
Python
from django.urls import include, path
|
|
from django.views.generic import TemplateView
|
|
|
|
from . import views
|
|
|
|
app_name = "accounts"
|
|
urlpatterns = [
|
|
path("inscription/", views.SignUpView.as_view(), name="signup-authorized"),
|
|
path(
|
|
"version-beta/",
|
|
TemplateView.as_view(template_name="registration/beta_version.html"),
|
|
name="signup",
|
|
),
|
|
path("", include("django.contrib.auth.urls")),
|
|
]
|