django-tz-detect icon indicating copy to clipboard operation
django-tz-detect copied to clipboard

Easy user timezone detection for Django

Results 14 django-tz-detect issues
Sort by recently updated
recently updated
newest added

This is really 2 problems: 1. users might change timezone after the first page load, 2. users might use a constant-offset timezone, and change that (see #70 for proof it...

tz_detect assumes the server's time zone database contains the browser's time zone name. This might not always be the case. This was inspired by work on the #70, I'm not...

Don't crash when the time zone saved inside the session is invalid. This helps with https://github.com/adamcharnock/django-tz-detect/issues/70, even for existing sessions.

This way timezones like Etc/GMT+3 will get sent correctly. Before this change the backend interpreted "Etc/GMT+3" as "Etc/GMT 3", which is not a valid timezone. This fixes #70 for new...