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:
@ -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'),
|
||||
]
|
||||
|
||||
|
Reference in New Issue
Block a user