I'd like to have my Admin site use a different default timezone than the rest of my django app.
I prefer the backend and API to operate in UTC, because this is a general good practice for geographically distributed teams. However admin users (based in a specific timezone) find this confusing, and would like to see their datetimes in a local timezone (say, Pacific Time).
Where should this be done to set the timezone only in the admin?
I'm wondering if there's a better way that won't affect the TZ of non-admin requests. It seems that this should be configurable somewhere on the AdminSite.
Has anyone made this work specifically for the Django Admin?
Thanks!