3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-09-12 01:53:08 +00:00
coope/gestion/urls.py

8 lines
137 B
Python

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