summaryrefslogtreecommitdiff
path: root/django/forms/formsets.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #22276 -- Fixed crash when formset management form is invalid.Jon Dufresne2020-11-051-14/+39
* Refs #29113 -- Simplified formset validation.Claude Paroz2020-11-031-14/+9
* Simplifed formset iteration using enumerate().Jon Dufresne2020-10-261-8/+4
* Fixed #13060 -- Improved error message when ManagementForm data is missing.manav0142020-10-211-1/+8
* Fixed #32042 -- Improved error messages for the number of submitted forms in ...meghanabhange2020-09-281-4/+4
* Fixed #9061 -- Allowed FormSets to disable deleting extra forms.David Smith2020-06-241-3/+6
* Fixed #20347 -- Allowed customizing the maximum number of instantiated forms ...David Smith2020-06-051-5/+10
* Removed unnecessary assignments in various code.Jon Dufresne2019-04-241-3/+4
* Fixed #29956 -- Allowed overriding an order field widget in formsets.Hasan Ramezani2019-03-211-3/+18
* Used 4 space hanging indent for dictionaries.Tim Graham2019-01-021-5/+11
* Fixed #29113 -- Simplified django.forms.formsets.all_valid() and clarified do...Tim Graham2018-02-051-3/+2
* Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."Tim Graham2017-09-071-3/+3
* Fixed #28321 -- Prevented FormSet.full_clean() from adding errors from delete...Windson yang2017-07-241-2/+6
* Merged nested if statements in BaseFormSet.is_valid().Windsooon2017-07-121-5/+4
* Fixed #27818 -- Replaced try/except/pass with contextlib.suppress().Mads Jensen2017-06-281-3/+3
* Fixed #28226 -- Replaced use of str.join() with concatenation.Tom2017-05-271-3/+3
* Fixed #28130 -- Fixed formset min_num validation with initial, unchanged forms.Tim Graham2017-04-281-1/+2
* Refs #27656 -- Updated django.forms/http docstring verbs according to PEP 257.Anton Samarchyan2017-02-201-45/+32
* Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz2017-02-071-3/+3
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-1/+1
* Refs #23919 -- Removed str() conversion of type and method __name__.Simon Charette2017-01-191-1/+1
* Refs #23919 -- Removed __nonzero__() methods (for Python 2).Simon Charette2017-01-191-3/+0
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-1/+1
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-181-1/+0
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-181-4/+3
* Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz2017-01-181-2/+0
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0
* Fixed #27119 -- Cached BaseFormSet.management_form propertyClaude Paroz2016-12-011-1/+1
* Fixed #26844 -- Made formset's validate_min validation ignore empty forms.Andrew Nester2016-08-101-1/+5
* Fixed #22383 -- Added support for HTML5 required attribute on required form f...Jon Dufresne2016-04-211-0/+5
* Added release notes for feature added in fe21fb81Russell Keith-Magee2015-06-051-0/+3
* Fixed #18166 -- Added form_kwargs support to formsets.Sergei Maertens2015-06-041-2/+11
* Fixed #24469 -- Refined escaping of Django's form elements in non-Django temp...Moritz Sichert2015-03-271-0/+2
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-4/+3
* Fixed #23812 -- Changed django.utils.six.moves.xrange imports to rangeMichael Hall2014-12-131-2/+2
* Fixed #22628 -- Took initial forms into account when combining FormSet.min_nu...Stephen Burrows2014-05-161-4/+4
* Removed casting to bool just before negation.Tomasz Wysocki2014-04-071-1/+1
* Corrected many style guide violations that the newest version of flake8 catchesAlex Gaynor2014-03-301-1/+1
* Fixed many typos in comments and docstrings.Rodolfo Carvalho2014-03-031-1/+1
* Fixed #17413 -- Serialization of form errors along with all metadata.Loic Bistuer2013-12-161-1/+1
* Fixed E125 pep8 warningsChristopher Medrela2013-11-281-3/+3
* Fixed #21489 -- Make formsets directly importable from django.forms.Loic Bistuer2013-11-251-1/+1
* Fixed all E226 violationsAlex Gaynor2013-11-031-1/+1
* More attacking E302 violatorsAlex Gaynor2013-11-021-0/+4
* Correct flake8 violation E261Ray Ashman Jr2013-11-021-2/+2
* Fixed all the E203 violationsAlex Gaynor2013-10-261-2/+2
* Fixed #21298 -- Fixed E301 pep8 warningsAlasdair Nicol2013-10-231-0/+1
* Fixed #21287 -- Fixed E123 pep8 warningsAlasdair Nicol2013-10-181-1/+1
* Fixed #9532 -- Added min_num and validate_min on formsets.yokomizor2013-09-191-5/+22
* Fixed #17627 -- Renamed util.py files to utils.pyTim Graham2013-09-161-1/+1