summaryrefslogtreecommitdiff
path: root/django/forms/fields.py
AgeCommit message (Expand)Author
2016-01-28Fixed #26129 -- Made invalid forms display initial values of disabled fields.Tim Graham
2016-01-23Refs #26104 -- Replaced unnecessary force_str() with force_text().Tim Graham
2016-01-22Fixed #26104 -- Fixed TypeError when passing number to forms.DurationField.Alexander Gaevsky
2015-12-17Fixed #25942 -- Fixed TypedChoiceField.has_changed with nullable fieldClaude Paroz
2015-09-23Refs #23162 -- Removed forms.Field._has_changed() method.Tim Graham
2015-09-23Refs #23151 -- Removed RegexField.error_message per deprecation timeline.Tim Graham
2015-09-18Fixed #24636 -- Added model field validation for decimal places and max digits.Iulia Chiriac
2015-09-16Refs #25294 -- Moved BoundField to django.forms.boundfield.Moritz Sichert
2015-09-16Fixed #25294 -- Allowed custom BoundFields on forms.Moritz Sichert
2015-07-17Fixed #16501 -- Added an allow_unicode parameter to SlugField.Edward Henderson
2015-07-16Fixed #25078 -- Added support for disabled form fieldsClaude Paroz
2015-07-01Fixed #4960 -- Added "strip" option to CharFieldCurtis
2015-06-24Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham
2015-06-16Fixed #24948 -- Fixed crash when uploading bitmap images in forms.ImageFieldAndriy Sokolovskiy
2015-03-05Fixed #24428 -- Fixed has_changed for fields with coercionClaude Paroz
2015-02-27Fixed #24229 -- Changed IntegerField to clean floats representing integersJon Dufresne
2015-02-14Added missing return value to DurationField.prepare_value(); refs #24339.Michael Angeletti
2015-02-14Fixed #24339 -- Fixed crash with empty DurationField form field.Michael Angeletti
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-02-05Removed old import aliases.Tim Graham
2015-01-19Removed IPAddressField per deprecation timeline; refs #20439.Tim Graham
2015-01-17Removed support for SplitDateTimeWidget with DateTimeField per deprecation ti...Tim Graham
2014-12-20Fixed #2443 -- Added DurationField.Marc Tamlyn
2014-12-12Fixed #23674 -- Fixed a crash when a MultiValueField has invalid data.Grzegorz Slusarek
2014-12-08Fixed #23968 -- Replaced list comprehension with generators and dict comprehe...Jon Dufresne
2014-11-12Fixed #23795 -- Fixed a regression in custom form fieldsBaptiste Mispelon
2014-11-04Fixed #13181 -- Added support for callable choices to forms.ChoiceFieldPeter Inglesby
2014-09-16Fixed #19463 -- Added UUIDFieldMarc Tamlyn
2014-09-05Limited lines to 119 characters in django/Tim Graham
2014-08-15Fixed #23162 -- Renamed forms.Field._has_changed() to has_changed().Gabriel Muñumel
2014-08-03Fixed #23151 -- Deprecated RegexField.error_message.Tim Graham
2014-08-01Fixed #23103 -- Annotated ImageField file with image and content_type attribu...Petras Zdanavičius
2014-07-29Fixed #23129 -- Added 'true' and 'false' to `NullBooleanField`.Kit La Touche
2014-06-21Prevented evaluation of a possible lazy messageClaude Paroz
2014-05-28Fixed several typos in DjangoAlex Gaynor
2014-05-13Fixed #22533 -- Added label_suffix parameter to form fields.Julen Ruiz Aizpuru
2014-04-26Fix many many typos in comments throughout the codebaseAlex Gaynor
2014-03-26Fixed #22114 -- Stopped adding trailing slashes in URLField.to_pythonClaude Paroz
2014-03-21Removed PIL compatability layer per deprecation timeline.Tim Graham
2014-03-13Fixed #22245 -- Avoided widget overwrite in forms.IntegerField subclassesClaude Paroz
2014-03-08Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz
2014-03-05Fixed #22206 -- Passed models.TextField.max_length to forms.CharField.maxlengthChris Wilson
2014-02-20Fixed #22097 -- Fixed change detection for TypedChoiceFieldClaude Paroz
2014-02-11Fixed #2445 -- Allowed limit_choices_to attribute to be a callable.Christopher Adams
2014-01-11Fixed #8898 -- Obsoleted SplitDateTimeWidget usage with DateTimeFieldClaude Paroz
2014-01-11Fixed #21752 -- Prevented custom widget step attribute to be overwrittenClaude Paroz
2013-12-16Removed duplicated `TimeField` in __all__.Artur Barseghyan
2013-12-16Fixed #17413 -- Serialization of form errors along with all metadata.Loic Bistuer
2013-11-28Fixed E125 pep8 warningsChristopher Medrela
2013-11-18Fixed #21397 -- Re-added flexibility to TypedChoiceField coercionClaude Paroz