mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-17 19:21:50 +02:00
14 lines
320 B
Python
14 lines
320 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "lieu"
|
|
urlpatterns = [
|
|
path("", views.IndexView.as_view(), name="index"),
|
|
path(
|
|
"<str:url>/",
|
|
views.LieuUpdateView.as_view(),
|
|
name="lieu_update",
|
|
),
|
|
path("creer", views.LieuCreateView.as_view(), name="create_lieu"),
|
|
]
|