From b2a1c0d343ec2941956d0917468e48d76a87ca93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C4=93teris=20Caune?= Date: Wed, 26 Aug 2020 16:15:29 +0300 Subject: [PATCH] Set USE_L10N to False until we've fixed issues caused by decimal comma formatting in templates. Fixes #416 --- hc/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hc/settings.py b/hc/settings.py index 9dd4c992..a97ac395 100644 --- a/hc/settings.py +++ b/hc/settings.py @@ -146,7 +146,7 @@ if os.getenv("DB") == "mysql": USE_TZ = True TIME_ZONE = "UTC" USE_I18N = True -USE_L10N = True +USE_L10N = False LOCALE_PATHS = (os.path.join(BASE_DIR, "locale"),) SITE_ROOT = os.getenv("SITE_ROOT", "http://localhost:8000")