first init statistics

This commit is contained in:
NABU Jena 2025-07-08 02:15:43 +02:00
parent 8b0d78f25e
commit ab11148521
22 changed files with 3227 additions and 2 deletions

View file

@ -43,7 +43,7 @@ SECURE_HSTS_PRELOAD = True
# -----------------------------------
# Allowed Hosts
# -----------------------------------
ALLOWED_HOSTS = [env("ALLOWED_HOSTS")]
ALLOWED_HOSTS = env("ALLOWED_HOSTS").split(",") if env("ALLOWED_HOSTS") else []
# -----------------------------------
# Application definition
@ -84,6 +84,7 @@ INSTALLED_APPS = [
"bird",
"contact",
"costs",
"statistic",
"export",
"notizen",
"reports",

View file

@ -11,6 +11,7 @@ urlpatterns = [
path("bird/", include("bird.urls")),
path("contacts/", include("contact.urls")),
path("costs/", include("costs.urls")),
path("statistics/", include("statistic.urls")),
path("export/", include("export.urls")),
path("notizen/", include("notizen.urls")),
# Admin