annuaire-eleves/fiches/urls.py
2020-02-19 20:08:38 +00:00

7 lines
174 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"),
]