I wonder if there's a way in the django template system to format the date depending on the language.
Like if my site is in english this code {{ submitted_date | date }}
will be displayed like this : June 29, 2016
But if the site is displayed in french the same code should display this format : 27 juin 2016.
Is there a way to tell Django to do this or I just have to hardcode it with if statements? (But if I got many languages?!)