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