1
0
Fork 0
mirror of synced 2024-06-26 10:00:19 +12:00

change defalt date format to ISO

This commit is contained in:
Nick Sweeting 2020-07-28 05:51:18 -04:00
parent ece6d43078
commit 313fcd0501

View file

@ -110,9 +110,12 @@ if IS_SHELL:
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = False
USE_I18N = False
USE_L10N = False
USE_TZ = True
DATETIME_FORMAT = 'Y-m-d g:iA'
SHORT_DATETIME_FORMAT = 'Y-m-d h:iA'
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'