2019-03-25 22:30:25 +01:00
|
|
|
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
|
|
|
|
urlpatterns = [
|
2020-01-15 20:58:10 +01:00
|
|
|
path('<int:id>',views.fiche, name='fiche'),
|
2020-01-15 21:27:37 +01:00
|
|
|
path('edit',views.fiche_modif, name='fiche_modif'),
|
|
|
|
path('search',views.search, name='search')
|
2019-03-25 22:30:25 +01:00
|
|
|
]
|