annuaire-eleves/fiches/urls.py

8 lines
172 B
Python
Raw Normal View History

2019-03-25 22:30:25 +01:00
from django.urls import path
from . import views
urlpatterns = [
2020-02-13 00:11:28 +01:00
path("edit", views.fiche_modif, name="fiche_modif"),
2020-09-15 13:32:11 +02:00
path("<user>", views.fiche, name="fiche"),
2020-02-13 00:11:28 +01:00
]