79608109

Date: 2025-05-06 06:35:56
Score: 1
Natty:
Report link

Use 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_format which respects the current active language.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ajas Mohammed