Yes, there is SHORT_DATE_FORMAT .
In the template, you can use it with a date filter :
{{ your_date_value|date:"SHORT_DATE_FORMAT" }}
Outside the template, you can use django.utils.formats.date_format , since:
from django.utils.formats import date_format date_format(date_obj, format='SHORT_DATE_FORMAT', use_l10n=True)
jpic
source share