first init statistics
This commit is contained in:
parent
8b0d78f25e
commit
ab11148521
22 changed files with 3227 additions and 2 deletions
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue