Opened 5 years ago

Last modified 21 months ago

#29822 assigned New feature

Timezone-aware widget for admin site

Reported by: Paul Tiplady Owned by: Shubh Parmar
Component: contrib.admin Version: 2.1
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: yes
Needs tests: yes Patch needs improvement: yes
Easy pickings: no UI/UX: no

Description

Timezone handling in the Django admin is quite confusing for users when the users are in multiple timezones, because everything in the admin site operates in the server's time.

Assuming USE_TZ=True, TIME_ZONE='UTC', USE_I18N, USE_L10N, when viewing a datetime field, users see the UTC time, with a note below saying "Note: You are 7 hours behind server time". This is better than nothing, but with a modern browser I believe it's possible to improve the situation.

The ideal behaviour (I believe) would be localizing the timezones in the browser to the user's own time zone, and submitting back to the app using TZ-aware timestamp strings. It's possible to pull the TZ unambiguously from a modern browser: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat/resolvedOptions#Browser_compatibility#Description.

Intl.DateTimeFormat().resolvedOptions().timeZone

Would this approach be acceptable? It seems that we'd want to default to the normal behaviour, and perhaps have this as config on the AdminSite object (since we want a way to enable this globally for sites that wish to use this feature).

Change History (10)

comment:1 by Tim Graham, 5 years ago

Triage Stage: UnreviewedSomeday/Maybe

It would be better to make your proposal on the DevelopersMailingList where it'll reach a wider audience.

comment:2 by Simon Charette, 5 years ago

... because everything in the admin site operates in the server's time.

Not exactly true, everything operates in django.utils.timezone.get_current_timezone() which defaults to settings.TIME_ZONE unless you've defined a middleware that overrides it.

The ideal behaviour (I believe) would be localizing the timezones in the browser to the user's own time zone, and submitting back to the app using TZ-aware timestamp strings.

That's the pattern we use for translations based off the Accept-Language header.

t's possible to pull the TZ unambiguously from a modern browser: ​https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat/resolvedOptions#Browser_compatibility#Description.

The main issue I see here is that we'd have to figure out a way to send this data to the server. Maybe at admin login? Another pattern is to allow users to define their own timezone through the admin using a field defined on their user model or to base it off geoip.

As Tim said this should be discussed on developer mailing list from now on but I believe Django should definitively make a better job at providing batteries to deal with timezone localization.

comment:3 by Tim Graham, 5 years ago

Triage Stage: Someday/MaybeAccepted

django-developers discussion. A reply from Aymeric suggests this might be feasible.

comment:4 by Martin Angelov, 5 years ago

Owner: changed from nobody to Martin Angelov
Status: newassigned

comment:5 by Shubh Parmar, 2 years ago

Owner: changed from Martin Angelov to Shubh Parmar

comment:7 by Jacob Walls, 2 years ago

Has patch: set

comment:8 by Shubh Parmar, 2 years ago

Do I have to do anything else in this PR?

comment:9 by Carlton Gibson, 2 years ago

Needs documentation: set
Needs tests: set
Patch needs improvement: set

comment:10 by Denny Biasiolli, 21 months ago

What about using standard input types and use isoformat() strings in templates?

  • input type="date"

https://caniuse.com/mdn-html_elements_input_type_date

  • input type="time"

https://caniuse.com/mdn-html_elements_input_type_time

  • input type="datetime-local"

https://caniuse.com/mdn-html_elements_input_type_datetime-local

I can help with that

Note: See TracTickets for help on using tickets.
Back to Top