I'm parsing an XML file that has the dates in GMT time. It's my first time working with timezones so I'm having some difficulty displaying the right time. In the XML file the date is like this.
2015-06-29 23:05
I set up my model with a basic datetime field like this:
date = models.DateTimeField()
...my settings.py has:
USE_TZ = True
TIME_ZONE = 'America/Toronto'
However when I display the time via views it shows 3:05. Not exactly sure what I'm suppost to do next.