[Answer]-Django datetime automatically sets timezone?

1👍

✅

That is a feature of django. You would have TIME_ZONE set to -06:00 in settings and USE_TZ is True. In such cases django converts date time objects to timezone aware datetime objects.

For how to adjust or show user specific time in his time zone, look at doc of django timezones.

Leave a comment