summaryrefslogtreecommitdiff
path: root/django/contrib/postgres/forms/ranges.py
Commit message (Collapse)AuthorAgeFilesLines
* Refs #33308 -- Moved psycopg2 imports to the psycopg_any module.Florian Apolloner2022-12-121-2/+5
|
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-20/+31
|
* Fixed #27147 -- Allowed specifying bounds of tuple inputs for non-discrete ↵Guilherme Martins Crocetti2021-11-041-1/+4
| | | | range fields.
* Fixed #30758 -- Made RangeFields use multiple hidden inputs for initial data.Nasir Hussain2019-09-171-13/+20
|
* Refs #29598 -- Removed FloatRangeField per deprecation timeline.Mariusz Felisiak2019-09-101-15/+1
|
* Fixed #29598 -- Deprecated FloatRangeField in favor of DecimalRangeField.Stefano Chiodino2018-10-021-4/+18
|
* Fixed #28227 -- Allowed importing BaseRangeField/RangeWidget from ↵Tom2017-05-201-1/+4
| | | | contrib.postgres.forms.
* Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz2017-02-071-1/+1
| | | | Thanks Tim Graham for the review.
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-2/+2
|
* Replaced dict.setdefault() usage to avoid unnecessary object instantiations.Benjamin Bach2016-01-051-2/+4
|
* Fixed #24841 -- Made BaseRangeField.prepare_value() call base_field's ↵Villiers Strauss2015-05-251-2/+9
| | | | prepare_value()
* Fixed #24341 -- Added specific error messages to RangeField subclassesforesmac2015-02-201-0/+4
|
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-4/+3
|
* Fixed #24170 -- Implemented decompress for BaseRangeField widgetsNg Zhi An2015-01-221-2/+13
|
* Fixed #24001 -- Added range fields for PostgreSQL.Marc Tamlyn2015-01-101-0/+69
Added support for PostgreSQL range types to contrib.postgres. - 5 new model fields - 4 new form fields - New validators - Uses psycopg2's range type implementation in python