Page d'agenda

This commit is contained in:
Claude Paroz 2025-08-16 18:44:58 +02:00
parent 6c3a1e6ddc
commit b58d85198a
10 changed files with 64 additions and 8 deletions

View file

@ -96,11 +96,11 @@ AUTH_USER_MODEL = "beesgospel.User"
# Internationalization
# https://docs.djangoproject.com/en/5.2/topics/i18n/
LANGUAGE_CODE = "fr"
LANGUAGE_CODE = "fr-ch"
TIME_ZONE = "UTC"
TIME_ZONE = "Europe/Zurich"
USE_I18N = False
USE_I18N = True
USE_TZ = True

View file

@ -13,4 +13,5 @@ urlpatterns = [
path("contact/", TemplateView.as_view(template_name="contact.html"), name="contact"),
path("membres/", views.EspaceMembresView.as_view(), name="membres"),
path("membres/liste/", views.ListeMembresView.as_view(), name="liste-membres"),
path("agenda/", views.AgendaView.as_view(), name="agenda"),
]