Error With Rendering Datetime Object In Django Templates
For a blogging app, I'm trying to get a list of all months, in which posts have been published, but find a wrong set of months rendered in the template. I hacked around and found t
Solution 1:
What's your time zone? The date is in UTC, so 2012-06-01 00:00:00 in UTC time can be still a previous day in another time zone, say 2012-05-31 20:00:00 in Eastern.
Here is a link for relevant docs
Post a Comment for "Error With Rendering Datetime Object In Django Templates"