I am using the django-auditlog library to store audit logs concerning some of my models.
I noticed that despite the fact that I have defined the time zone in settings.py
all the models containing fields of type DateTimeField
are stored in UTC time in my admin panel in Log entries section.
Here is my settings.py
part concerning time and time zone configurations :
USE_L10N = True
TIME_ZONE = 'Europe/Athens'
USE_TZ = True
What to do in order the log audit records to be in timezone defined by me and not in UTC?