formats.py 454 B

1234567891011121314
  1. # This file is distributed under the same license as the Django package.
  2. #
  3. # The *_FORMAT strings use the Django date format syntax,
  4. # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
  5. DATE_FORMAT = "j F Y"
  6. TIME_FORMAT = "G:i"
  7. YEAR_MONTH_FORMAT = "F Y"
  8. MONTH_DAY_FORMAT = "j F"
  9. SHORT_DATE_FORMAT = "Y/m/d"
  10. SHORT_DATETIME_FORMAT = "Y/m/d G:i"
  11. FIRST_DAY_OF_WEEK = 1
  12. DECIMAL_SEPARATOR = "."
  13. THOUSAND_SEPARATOR = ","
  14. NUMBER_GROUPING = 3