Reputation: 9643
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?
Upvotes: 15
Views: 29291
Reputation: 5432
Per Django docs, you can use a date
filter to format date:
{{ sale.validity|date:"d-m-Y"}}
Additionally, you can also set DATE_FORMAT (or DATETIME_FORMAT) setting to set a project-wide default for displaying such values if USE_L10N
is False. If it's true, you'll want to have a look at this documentation on format localization.
Upvotes: 36