forked from DGNum/gestioCOF
726b3f55a0
This is a much more sensible name since it contains configuration applicable to both GestioCOF and GestioBDS. The next logical step would be to rename the `gestioncof/` folder to `cof/`.
11 lines
179 B
Python
11 lines
179 B
Python
# -*- encoding: utf-8 -*-
|
|
|
|
"""
|
|
English formatting.
|
|
"""
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
DATETIME_FORMAT = r"l N j, Y \a\t P"
|
|
DATE_FORMAT = r"l N j, Y"
|
|
TIME_FORMAT = r"P"
|