annuaire-eleves/fiches/urls.py
2020-01-15 20:58:10 +01:00

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')
]