2009-12-23 01:58:49 +08:00
|
|
|
# This file is distributed under the same license as the Django package.
|
|
|
|
#
|
2010-12-13 07:02:10 +08:00
|
|
|
# The *_FORMAT strings use the Django date format syntax,
|
2018-09-26 14:48:47 +08:00
|
|
|
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
|
2009-12-23 01:58:49 +08:00
|
|
|
DATE_FORMAT = 'j F Y'
|
2010-04-29 22:38:22 +08:00
|
|
|
TIME_FORMAT = 'H:i'
|
|
|
|
DATETIME_FORMAT = 'j F Y H:i'
|
|
|
|
YEAR_MONTH_FORMAT = 'F Y'
|
2009-12-23 01:58:49 +08:00
|
|
|
MONTH_DAY_FORMAT = 'j F'
|
2010-04-29 22:38:22 +08:00
|
|
|
SHORT_DATE_FORMAT = 'Y-m-d'
|
|
|
|
SHORT_DATETIME_FORMAT = 'Y-m-d H:i'
|
|
|
|
FIRST_DAY_OF_WEEK = 1
|
2010-12-13 07:02:10 +08:00
|
|
|
|
|
|
|
# The *_INPUT_FORMATS strings use the Python strftime format syntax,
|
2018-09-26 14:48:47 +08:00
|
|
|
# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
|
2012-12-01 21:15:06 +08:00
|
|
|
# Kept ISO formats as they are in first position
|
2015-01-22 00:55:57 +08:00
|
|
|
DATE_INPUT_FORMATS = [
|
2010-05-08 02:53:37 +08:00
|
|
|
'%Y-%m-%d', # '2006-10-25'
|
|
|
|
'%m/%d/%Y', # '10/25/2006'
|
|
|
|
'%m/%d/%y', # '10/25/06'
|
2015-01-22 00:55:57 +08:00
|
|
|
]
|
|
|
|
DATETIME_INPUT_FORMATS = [
|
2010-05-08 02:53:37 +08:00
|
|
|
'%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59'
|
2013-03-03 02:04:23 +08:00
|
|
|
'%Y-%m-%d %H:%M:%S.%f', # '2006-10-25 14:30:59.000200'
|
2010-05-08 02:53:37 +08:00
|
|
|
'%Y-%m-%d %H:%M', # '2006-10-25 14:30'
|
|
|
|
'%Y-%m-%d', # '2006-10-25'
|
|
|
|
'%m/%d/%Y %H:%M:%S', # '10/25/2006 14:30:59'
|
2013-03-03 02:04:23 +08:00
|
|
|
'%m/%d/%Y %H:%M:%S.%f', # '10/25/2006 14:30:59.000200'
|
2010-05-08 02:53:37 +08:00
|
|
|
'%m/%d/%Y %H:%M', # '10/25/2006 14:30'
|
|
|
|
'%m/%d/%Y', # '10/25/2006'
|
|
|
|
'%m/%d/%y %H:%M:%S', # '10/25/06 14:30:59'
|
2013-03-03 02:04:23 +08:00
|
|
|
'%m/%d/%y %H:%M:%S.%f', # '10/25/06 14:30:59.000200'
|
2010-05-08 02:53:37 +08:00
|
|
|
'%m/%d/%y %H:%M', # '10/25/06 14:30'
|
|
|
|
'%m/%d/%y', # '10/25/06'
|
2015-01-22 00:55:57 +08:00
|
|
|
]
|
2010-10-11 01:56:39 +08:00
|
|
|
DECIMAL_SEPARATOR = ','
|
2013-11-03 05:02:56 +08:00
|
|
|
THOUSAND_SEPARATOR = '\xa0' # non-breaking space
|
2010-04-29 22:38:22 +08:00
|
|
|
NUMBER_GROUPING = 3
|