11 lines
407 B
Python
11 lines
407 B
Python
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/_reset", views.ResetView.as_view(), name="fiche_reset"),
|
|
path("fiche/<slug:slug>", views.FicheView.as_view(), name="fiche"),
|
|
path("birthday", views.BirthdayView.as_view(), name="birthday"),
|
|
]
|