django-timezone-field icon indicating copy to clipboard operation
django-timezone-field copied to clipboard

A Django app providing DB, form, and REST framework fields for zoneinfo and pytz timezone objects.

Results 24 django-timezone-field issues
Sort by recently updated
recently updated
newest added

Python 3.9.13 Django 4.0.7 django-timezone-field==5.0 timezone_field/fields.py:41 ```python # NOTE: these defaults are excluded from migrations. If these are changed, # existing migration files will need to be accomodated. default_max_length =...

Bumps [django](https://github.com/django/django) from 3.2.12 to 3.2.14. Commits 746e88c [3.2.x] Bumped version for 3.2.14 release. a9010fe [3.2.x] Fixed CVE-2022-34265 -- Protected Trunc(kind)/Extract(lookup_name) ag... 3acf156 [3.2.x] Fixed GEOSTest.test_emptyCollections() on GEOS 3.8.0. 4a5d98e...

dependencies

`django-timezone-field` [dropped support for older Django versions](https://github.com/mfogel/django-timezone-field/commit/51970ba1fc9e987c0c05282c8aa70c92c5010b27), but does not restrict the Django version in its dependency list. Tools like Poetry will conclude that these versions of the library may...

Hi, Im getting this error: ``` During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/Users/paulo/Developer/workspaces/python/pyaa/manage.py", line 22, in main() File "/Users/paulo/Developer/workspaces/python/pyaa/manage.py", line 18,...

please add python3.10 support.

Hi, thanks for your hard work on django-timezone-field! `TimeZoneSerializerField.to_internal_value()` seems not to fully handle the empty string ("") case. With `use_pytz=False`, when the empty string is fed to the the...

I would love the list of timezones to be more familiar to users when browsing in a language other than English. I might propose that this comes in the form...

enhancement

And as a result, the OPTIONS request does not show all the possible choices in the API. This is related to https://github.com/mfogel/django-timezone-field/issues/61 In my opinion, this should be the first...

enhancement

``` obj = MyModel.objects.create(timezone='Europe/Berlin') assert not isinstance(obj.timezone, str) ``` It should return pytz object. I'm not sure but we probably will have to create descriptor like `FileField` has

enhancement

Right now the template function naively loads every timezone as options in form. I would be nice to load these over ajax to speed up delivery of the webpage.

enhancement