2019-03-25 22:30:25 +01:00
|
|
|
from django.urls import path
|
2021-10-09 11:52:20 +02:00
|
|
|
|
2019-03-25 22:30:25 +01:00
|
|
|
from . import views
|
|
|
|
|
|
|
|
urlpatterns = [
|
2021-01-27 21:58:24 +01:00
|
|
|
path("", views.HomeView.as_view(), name="home"),
|
2021-10-09 11:52:20 +02:00
|
|
|
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"),
|
2021-01-27 21:58:24 +01:00
|
|
|
path("birthday", views.BirthdayView.as_view(), name="birthday"),
|
2020-02-13 00:11:28 +01:00
|
|
|
]
|