8 lines
No EOL
210 B
Python
8 lines
No EOL
210 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')
|
|
] |