There seems to be no default time format for the FR format.
What you can do is configure the format module :
# myproject/settings.py FORMAT_MODULE_PATH = 'myproject.formats'
Create it:
myproject/ formats/ __init__.py fr/ __init__.py formats.py
And define the French format:
# myproject/formats/fr/formats.py TIME_FORMAT = 'G:i'
Pierre de LESPINAY
source share