3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-08-19 16:33:39 +00:00
coope/gestion/urls.py

9 lines
137 B
Python
Raw Normal View History

from django.urls import path
from . import views
app_name="gestion"
urlpatterns = [
path('manage', views.manage, name="manage"),
]