8 lines
223 B
Python
8 lines
223 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('<int:id>', views.fiche, name='fiche'),
|
|
path('edit', views.fiche_modif, name='fiche_modif'),
|
|
path('search', views.search, name='search'),
|
|
]
|