I have a datetime object. This is my template file:
<ul>
<li>{{ sale.validity }}</li>
</ul>
and the output i’m getting is in the format:
July 18, 2012, midnight
I would really like to change the output to be numerical in the format: day-month-year so for example the above would be changed to:
18-07-2012
Can someone point me out to the right direction on this?
Per Django docs, you can use a
datefilter to format date:Additionally, you can also set DATE_FORMAT (or DATETIME_FORMAT) setting to set a project-wide default for displaying such values if
USE_L10Nis False. If it’s true, you’ll want to have a look at this documentation on format localization.