1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-23 19:06:37 +02:00

création d'un form pour l'ajout d'aliments basiques

This commit is contained in:
quark
2024-05-24 21:49:23 +02:00
committed by korenstin
parent 4c390dce17
commit 64bd5ed546
6 changed files with 115 additions and 8 deletions

View File

@ -1,7 +1,16 @@
# Copyright (C) 2018-2024 by BDE ENS Paris-Saclay
# SPDX-License-Identifier: GPL-3.0-or-later
from django.urls import path
from . import views
app_name = 'food'
urlpatterns = [
path('', views.index, name='index')
path('test_basic_food_form',views.test_basic_foodform),
path('test_transformed_food_form', views.test_transformed_foodform),
path('test_allergen_form', views.test_allergenform),
path('0', views.Basic_foodCreateView.as_view(), name = 'basic_food'),
]