annuaire-eleves/fiches/urls.py

10 lines
327 B
Python
Raw Normal View History

2019-03-25 22:30:25 +01:00
from django.urls import path
from . import views
urlpatterns = [
path("", views.HomeView.as_view(), name="home"),
path("fiche/edit", views.EditView.as_view(), name="fiche_modif"),
path("fiche/<user>", views.FicheView.as_view(), name="fiche"),
path("birthday", views.BirthdayView.as_view(), name="birthday"),
2020-02-13 00:11:28 +01:00
]