Set USE_L10N to False until we've fixed issues caused by decimal comma formatting in templates. Fixes #416

This commit is contained in:
Pēteris Caune 2020-08-26 16:15:29 +03:00
parent d73de68f70
commit b2a1c0d343
No known key found for this signature in database
GPG Key ID: E28D7679E9A9EDE2

View File

@ -146,7 +146,7 @@ if os.getenv("DB") == "mysql":
USE_TZ = True USE_TZ = True
TIME_ZONE = "UTC" TIME_ZONE = "UTC"
USE_I18N = True USE_I18N = True
USE_L10N = True USE_L10N = False
LOCALE_PATHS = (os.path.join(BASE_DIR, "locale"),) LOCALE_PATHS = (os.path.join(BASE_DIR, "locale"),)
SITE_ROOT = os.getenv("SITE_ROOT", "http://localhost:8000") SITE_ROOT = os.getenv("SITE_ROOT", "http://localhost:8000")