From f04b66ad93a7c5ef528fc2481ba0849749942532 Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Mon, 15 Dec 2025 14:33:18 +1100 Subject: [PATCH] Document local times in database --- conservancy/settings/base.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/conservancy/settings/base.py b/conservancy/settings/base.py index 07b1e0b3..044ce738 100644 --- a/conservancy/settings/base.py +++ b/conservancy/settings/base.py @@ -125,6 +125,9 @@ TEMPLATES = [ ] # Internationalization +# +# Due to USE_TZ = False, times in the database are under the local America/New York +# timezone without any zone information. TIME_ZONE = 'America/New_York' LANGUAGE_CODE = 'en-us' USE_TZ = False