summaryrefslogtreecommitdiff
path: root/django/forms/forms.py
AgeCommit message (Expand)Author
2020-11-02Simplified DeclarativeFieldsMetaclass.__new__() a bit.Vitaliy Yelnik
2020-02-13Fixed #30261 -- Prevented Form._html_output() from mutating errors if hidden ...Hasan Ramezani
2019-11-28Refs #23919 -- Replaced super(...) with super() in metaclasses.Jon Dufresne
2019-09-24Removed some outdated backwards compatibility imports and misleading comments.Mads Jensen
2019-04-18Fixed typos in docs, comments, and exception messages.Ville Skyttä
2019-03-05Fixed #29459 -- Initialized form data/files with empty MultiValueDicts.Andra Denis Ionescu
2019-02-09Removed uneeded generator expressions and list comprehensions.Sergey Fedoseev
2019-02-06Fixed #30159 -- Removed unneeded use of OrderedDict.Nick Pope
2018-03-16Fixed hanging indentation in various code.Mariusz Felisiak
2018-02-15Fixed #28171 -- Added an exception if Form's empty_permitted and use_required...Herbert Parentes Fortes Neto
2018-01-21Fixed #29038 -- Removed closing slash from HTML void tags.Jon Dufresne
2017-12-26Fixed #28930 -- Simplified code with any() and all().Дилян Палаузов
2017-12-11Fixed #28874 -- Prevented double escaping of errors on hidden form fields.Daniil
2017-12-07Fixed #28906 -- Removed unnecessary bool() calls.Tim Graham
2017-09-07Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."Tim Graham
2017-06-28Fixed #27818 -- Replaced try/except/pass with contextlib.suppress().Mads Jensen
2017-04-27Refs #27795 -- Replaced many force_text() with str()Claude Paroz
2017-04-01Fixed #27989 -- Preserved empty QueryDicts for form's data/files args.Stefan Wehrmeyer
2017-03-04Refs #27795 -- Removed unneeded force_text callsClaude Paroz
2017-02-20Refs #27656 -- Updated django.forms/http docstring verbs according to PEP 257.Anton Samarchyan
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz
2017-01-27Refs #23919 -- Used DeclarativeFieldsMetaclass.__prepare__() for tracking for...Tim Graham
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed most of remaining six usageClaude Paroz
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2017-01-18Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
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