We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbb09ed commit b054d0aCopy full SHA for b054d0a
1 file changed
settings.py
@@ -37,6 +37,9 @@
37
DATE_FORMAT = 'Y-m-d'
38
DATETIME_FORMAT = 'Y-m-d H:i'
39
40
+# Disable so our own DATE_FORMAT/DATETIME_FORMAT is used.
41
+USE_L10N = False
42
+
43
# Login URL configuration
44
LOGIN_URL = '/login/'
45
LOGIN_REDIRECT_URL = '/'
@@ -208,7 +211,7 @@
208
211
209
212
# Import local settings
210
213
try:
- from local_settings import * # noqa
214
+ from local_settings import * # noqa
215
except ImportError:
216
pass
217
0 commit comments