Relecture du code v1
This commit is contained in:
26
SGL/urls.py
26
SGL/urls.py
@@ -26,11 +26,27 @@ from django.conf.urls.static import static
|
||||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
path("", views.index, name="index"),
|
||||
path("gestion-produit/", include("gestion_produit.urls")),
|
||||
path("gestion-fournisseur/", include("gestion_fournisseur.urls")),
|
||||
path("gestion-vehicule/", include("gestion_vehicule.urls")),
|
||||
path("authentification/", include("authentification.urls")),
|
||||
path(
|
||||
"",
|
||||
views.index,
|
||||
name="index"
|
||||
),
|
||||
path(
|
||||
"gestion-produit/",
|
||||
include("gestion_produit.urls")
|
||||
),
|
||||
path(
|
||||
"gestion-fournisseur/",
|
||||
include("gestion_fournisseur.urls")
|
||||
),
|
||||
path(
|
||||
"gestion-vehicule/",
|
||||
include("gestion_vehicule.urls")
|
||||
),
|
||||
path(
|
||||
"authentification/",
|
||||
include("authentification.urls")
|
||||
),
|
||||
path(
|
||||
"liste-commande-en-cours/",
|
||||
views.liste_produit_commander,
|
||||
|
||||
Reference in New Issue
Block a user