1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-07-25 18:15:24 +02:00

création de l'interface admin temporaire

This commit is contained in:
quark
2024-05-21 11:21:13 +02:00
parent 4e6ec16e94
commit c9980b0bd1
7 changed files with 78 additions and 2 deletions

7
apps/food/urls.py Normal file

@ -0,0 +1,7 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index')
]