hours #14

Merged
cayop merged 6 commits from hours into main 2024-10-21 16:51:21 +00:00
Showing only changes of commit ff91bc9ad9 - 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)