I'm having a little issue regarding showing months in words, instead of numbers. Right my blog is showing "13-03-2013", but I want it to be "13-March-2013"
Here are the things I did to get as far as I am now: I added the date in my models:
pub_date = models.DateTimeField("Gepubliceerd", auto_now_add=True)
When I call the variable pub_date in my blog template it shows in numbers(13-03-2013).
Is there an easy way to change the numbers to the actual month names? I've been thinking about creating a tuple with every month name in it, let it run a check which number of the month there is in pub_date, and according to that, use the right month from the tuple.
But for some reason I feel there has to be a easier way. But so far I haven't been successful finding another solution.
Hopefully some awsome people have experience with this!
Thx in advance!