When you store a date/time in Django, it is always converted to utc+0 time.
This appears to be intentional and may result in conversion from Django's time zone to the utc time set in the settings.
from django.utils import timezone
timezone.now() # utc +0 time
timezone.localtime(timezone.now()) # utc +{timzeon in settings} time