2👍
✅
When support for time zones is enabled, Django stores datetime information in UTC in the database, uses time-zone-aware datetime objects internally, and translates them to the end user’s time zone in templates and forms.
django docs
so try this
USE_TZ = False
Source:stackexchange.com