[Answered ]-Django date is different in template than the database

2👍

If you want to include year in your date format then you need to update your date format with “d F Y H:i”,Also note that minutes is refer to i in django

{{post.date|date:"d F Y H:i"}}

for more date formats for django template have a look at the docs

Leave a comment