15 lines
454 B
Python
15 lines
454 B
Python
# This file is distributed under the same license as the Django package.
|
|
#
|
|
# The *_FORMAT strings use the Django date format syntax,
|
|
# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
|
|
DATE_FORMAT = "j F Y"
|
|
TIME_FORMAT = "G:i"
|
|
YEAR_MONTH_FORMAT = "F Y"
|
|
MONTH_DAY_FORMAT = "j F"
|
|
SHORT_DATE_FORMAT = "Y/m/d"
|
|
SHORT_DATETIME_FORMAT = "Y/m/d G:i"
|
|
FIRST_DAY_OF_WEEK = 1
|
|
DECIMAL_SEPARATOR = "."
|
|
THOUSAND_SEPARATOR = ","
|
|
NUMBER_GROUPING = 3
|