django.utils.formats.date_format in your template:{% load l10n %}
{{ day|date_format:"l" }} {# Outputs localized full weekday name #}
{{ day|date_format:"F" }} {# Outputs localized full month name #}
This uses Django’s
date_formatwhich respects the current active language.