[Answer]-DateTime Django. Capitalize the first Letter in French

1👍

Building on Leandro’s answer, you could try {{ object.date|date:"DATETIME_FORMAT"|capfirst }} which should convert the date to the format first, and then capitalize.

0👍

You could make that tag capitalize itself:

{{ object.date|capfirst }}

And that should always capitalize the first letter.

Leave a comment