annuaire-eleves/fiches/urls.py
2020-02-08 11:02:39 +01:00

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