fix en_GB display format

This commit is contained in:
Amith211 2021-11-15 17:24:08 +00:00
parent df51cc05d8
commit 429c85cd5a
No known key found for this signature in database
GPG Key ID: 51292ED62E455261
1 changed files with 2 additions and 0 deletions

View File

@ -41,6 +41,7 @@ def update_en_us_date_formats():
def update_en_gb_date_formats():
if settings.USE_24_HOUR_TIME_FORMAT:
# 25 October 2006 14:30:00
formats_en_gb.DATETIME_FORMAT = 'j F Y H:i:s'
custom_input_formats = [
'%d/%m/%Y %H:%M:%S', # '25/10/2006 14:30:59'
@ -49,6 +50,7 @@ def update_en_gb_date_formats():
formats_en_gb.SHORT_DATETIME_FORMAT = 'd/m/Y H:i'
formats_en_gb.TIME_FORMAT = 'H:i'
else:
formats_en_gb.DATETIME_FORMAT = 'j F Y f a' # 25 October 2006 2:30 p.m
# These formats are added to support the locale style of Baby Buddy's
# frontend library, which uses momentjs.
custom_input_formats = [