mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-03 12:21:52 +02:00
8 lines
160 B
Python
8 lines
160 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "accounts"
|
|
urlpatterns = [
|
|
path("inscription/", views.SignUpView.as_view(), name="signup"),
|
|
]
|