mirror of https://github.com/snachodog/mybuddy.git
27 lines
1011 B
Python
27 lines
1011 B
Python
from django.conf import settings
|
|
from django.conf.locale.en import formats
|
|
|
|
# Override the regular locale settings to support 24 hour time.
|
|
if settings.USE_24_HOUR_TIME_FORMAT:
|
|
DATETIME_FORMAT = 'N j, Y, H:i:s'
|
|
CUSTOM_INPUT_FORMATS = [
|
|
'%m/%d/%Y %H:%M:%S', # '10/25/2006 14:30:59'
|
|
'%m/%d/%Y %H:%M', # '10/25/2006 14:30'
|
|
]
|
|
SHORT_DATETIME_FORMAT = 'm/d/Y G:i:s'
|
|
TIME_FORMAT = 'H:i:s'
|
|
else:
|
|
# These formats are added to support the locale style of Baby Buddy's
|
|
# frontend library, which uses momentjs.
|
|
CUSTOM_INPUT_FORMATS = [
|
|
'%m/%d/%Y %I:%M:%S %p', # '10/25/2006 2:30:59 PM'
|
|
'%m/%d/%Y %I:%M %p', # '10/25/2006 2:30 PM'
|
|
]
|
|
|
|
# Add custom "short" version of `MONTH_DAY_FORMAT`. This customization will
|
|
# only work with the locale format locale specified by this file.
|
|
SHORT_MONTH_DAY_FORMAT = 'M j'
|
|
|
|
# Append all other input formats from the base locale.
|
|
DATETIME_INPUT_FORMATS = CUSTOM_INPUT_FORMATS + formats.DATETIME_INPUT_FORMATS
|