1
1

add locale settings

This commit is contained in:
2020-04-05 15:28:39 +02:00
parent 1ee8b4b34d
commit 79f99bf146

View File

@@ -100,6 +100,11 @@ AUTH_PASSWORD_VALIDATORS = [
{"NAME": "django.contrib.auth.password_validation.NumericPasswordValidator", },
]
TIME_ZONE = 'Europe/Berlin'
USE_I18N = False
USE_L10N = False
USE_TZ = True
LOGIN_URL = reverse_lazy("login")
LOGIN_REDIRECT_URL = reverse_lazy("finance:index")