I want to change the format of the Date in my Django project.
Now it looks like this: "June 3, 2018, 2:19 p.m.", and I want something like: "23,Oct 2018 - 18H23m".
The model that I have its setting this time:
date = models.DateTimeField(auto_now_add=True)
How can I format the date to the way I want? Are there any other parameters that allow me to do this?
I have just started working with django 2 days ago.
I tried to search around but didnt find any answer.