Première version affichage des vhcs

This commit is contained in:
Ambulance Clerc
2022-11-09 18:07:18 +01:00
parent 0e8f4ab529
commit 5c52baa2cd
11 changed files with 77 additions and 6 deletions

15
vehicles/urls.py Normal file
View File

@@ -0,0 +1,15 @@
from django.urls import path
from . import views
app_name = "vehicles"
urlpatterns = [
path('vhc', views.view_vhc, name='view_vhc'),
]