mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-01 19:32:26 +02:00
9 lines
220 B
Python
9 lines
220 B
Python
from django.urls import include, path
|
|
|
|
from . import views
|
|
|
|
app_name = "accounts"
|
|
urlpatterns = [
|
|
path("inscription/", views.SignUpView.as_view(), name="signup"),
|
|
path("", include("django.contrib.auth.urls")),
|
|
]
|