I am using Django 1.8.6. Datetimes are stored inside a PostgreSQL database in UTC. Below are my project-wide settings:
USE_TZ = True
TIMEZONE = 'UTC'
USE_L10N = True
I wonder if it is possible for me to show the time in a specified timezone inside the Django admin? (I am the only user of the admin.) Thanks.