hours #14

Merged
cayop merged 6 commits from hours into main 2024-10-21 16:51:21 +00:00
1 changed files with 5 additions and 2 deletions
Showing only changes of commit a0548b38c7 - Show all commits

View File

@ -132,11 +132,14 @@ AUTH_PASSWORD_VALIDATORS = [
LANGUAGE_CODE = "en-us"
TIME_ZONE = "UTC"
TIME_ZONE = config("TIME_ZONE", default="UTC")
USE_I18N = True
USE_TZ = True
USE_TZ = False
if TIME_ZONE == "UTC":
USE_TZ = True
# Static files (CSS, JavaScript, Images)