5
The datetime
objects in your code will be in the timezone returned by your database (or database adapter). Generally UTC, as in this case, which is why the printed value is off by an hour.
These are automatically converted to the current time zone (TIME_ZONE
, by default) for interactions with users (forms and templates), which is why your template view is correct.
If you want to convert the datetime
object in code to the current time zone, use localtime()
:
from django.utils.timezone import localtime
local_modified = localtime(foo.modified)
0
from django.utils import timezone
from django.templatetags.l10n import localize
def localize_datetime(value):
return localize(timezone.template_localtime(value))
I’ve written this function for this purpose.
I’ve tried to find out how Django handle datetime fields from the box, in Django admin it automatically convert value to the local timezone and apply formatting from formats defined in FORMAT_MODULE_PATH.
So timezone.template_localtime – convert value to local time if it settings.USE_TZ is On
And localize – apply formatting