summaryrefslogtreecommitdiff
path: root/django/forms/forms.py
AgeCommit message (Expand)Author
2016-12-27Fixed #15667 -- Added template-based widget rendering.Preston Timmons
2016-08-18Fixed #27068 -- Unified form field initial data retrieval.Jon Dufresne
2016-07-27Fixed #26917 -- Fixed crash in disabled ModelChoiceFields.Tim Graham
2016-04-21Fixed #22383 -- Added support for HTML5 required attribute on required form f...Jon Dufresne
2016-04-14Refs #26502 -- Added choices to Form.__getitem__() KeyError message.Tim Graham
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-04-01Fixed #25532 -- Properly redisplayed JSONField form input valuesClaude Paroz
2015-09-24Refs #25294 -- Added BoundField import for backwards compatibility.Moritz Sichert
2015-09-16Refs #25294 -- Moved BoundField to django.forms.boundfield.Moritz Sichert
2015-09-16Fixed #25294 -- Allowed custom BoundFields on forms.Moritz Sichert
2015-08-21Removed BaseForm._raw_value().Tim Graham
2015-08-04Used @cached_property for BaseForm.changed_data.Curtis Maloney
2015-07-16Fixed #25078 -- Added support for disabled form fieldsClaude Paroz
2015-06-06Fixed #12437 -- Added css_classes to Form._html_output()Markus Amalthea Magnuson
2015-06-04Removed comment from Form.changed_data; refs #24191Alasdair Nicol
2015-05-25Fixed #24788 -- Allowed Forms to specify a prefix at the class level.Paweł Marczewski
2015-05-06Fixed #24497 -- Added Widget.supports_microseconds attributewdmgsm
2015-03-27Fixed #24469 -- Refined escaping of Django's form elements in non-Django temp...Moritz Sichert
2015-03-18Refs #24469 -- Fixed escaping of forms, fields, and media in non-Django templ...Moritz Sichert
2015-03-16Fixed #5986 -- Added ability to customize order of Form fieldsThomas Tanner
2015-02-24Fixed #24391 -- Made BoundField.value() cache callable values.Michael Angeletti
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-01-18Removed forms.forms.get_declared_fields() per deprecation timeline; refs #19617.Tim Graham
2015-01-15Fixed #23712 -- Fixed KeyError with BaseForm._html_output()Yang Liu
2014-12-03Removed redundant numbered parameters from str.format().Berker Peksag
2014-09-05Limited lines to 119 characters in django/Tim Graham
2014-08-22Fixed #23167 -- Added BaseForm.__repr__()areski
2014-08-15Fixed #23162 -- Renamed forms.Field._has_changed() to has_changed().Gabriel Muñumel
2014-08-04Fixed #22745 -- Prevented reevaluation of ModelChoiceField's queryset when ac...Vincent-Vega
2014-08-04Corrected a comment in forms/forms.py; refs #16612.Tim Graham
2014-08-02Fixed two typos in docstrings.Baptiste Mispelon
2014-07-05Ensured bound field renders as unicode safe dataClaude Paroz
2014-06-02Fixed #11776 -- Added CSS class for non-field/top of form errors.Nick Presta
2014-05-24Fixed #22510 -- Harden field removal to only None.Marc Tamlyn
2014-05-13Fixed #22533 -- Added label_suffix parameter to form fields.Julen Ruiz Aizpuru
2014-05-10Fixed #22502 -- Fixed microseconds/default/form interactionStephen Burrows
2014-05-05Fixed #22570 -- Made Form.__getitem__ KeyError more descriptive.Ben Davis
2014-04-07Removed casting to bool just before negation.Tomasz Wysocki
2014-03-24Fixed #17922 -- Added required_css_class to form label.Anubhav Joshi
2014-03-24Fixed #22318 -- Added Form.has_error() to easily check if a given error has h...Loic Bistuer
2014-03-21Removed backwards compatibility code to call field.widget._has_changed()Tim Graham
2014-03-08Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz
2014-03-03Fixed many typos in comments and docstrings.Rodolfo Carvalho
2014-02-08Fixed #16192 -- Made unique error messages in ModelForm customizable.Loic Bistuer
2014-01-10Fixed docstring typo in django/forms/forms.py.Marc Sibson
2013-12-16Fixed #17413 -- Serialization of form errors along with all metadata.Loic Bistuer
2013-11-30Fixed #20867 -- Added the Form.add_error() method.Loic Bistuer
2013-11-03Fixed flake8 E251 violationsMilton Mazzarri
2013-11-02More attacking E302 violatorsAlex Gaynor
2013-11-02Correct flake8 violation E261Ray Ashman Jr