From 804bce471920b3f6b18e0c3975b3d105473cdbde Mon Sep 17 00:00:00 2001 From: bronsen Date: Wed, 12 Mar 2025 23:12:41 +0100 Subject: [PATCH] [django] set timezone and disable i18n --- config/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/settings.py b/config/settings.py index ed02615..2413c6d 100644 --- a/config/settings.py +++ b/config/settings.py @@ -101,8 +101,8 @@ AUTH_PASSWORD_VALIDATORS = [ # Internationalization # https://docs.djangoproject.com/en/5.1/topics/i18n/ LANGUAGE_CODE = "en-us" -TIME_ZONE = "UTC" -USE_I18N = True +TIME_ZONE = "Europe/Berlin" +USE_I18N = False USE_TZ = True # Static files (CSS, JavaScript, Images)