summaryrefslogtreecommitdiff
path: root/django/forms/formsets.py
AgeCommit message (Expand)Author
2014-05-16[1.7.x] Fixed #22628 -- Took initial forms into account when combining FormSe...Stephen Burrows
2014-04-21[1.7.x] Corrected many style guide violations that the newest version of flak...Alex Gaynor
2014-03-03Fixed many typos in comments and docstrings.Rodolfo Carvalho
2013-12-16Fixed #17413 -- Serialization of form errors along with all metadata.Loic Bistuer
2013-11-28Fixed E125 pep8 warningsChristopher Medrela
2013-11-25Fixed #21489 -- Make formsets directly importable from django.forms.Loic Bistuer
2013-11-03Fixed all E226 violationsAlex Gaynor
2013-11-02More attacking E302 violatorsAlex Gaynor
2013-11-02Correct flake8 violation E261Ray Ashman Jr
2013-10-26Fixed all the E203 violationsAlex Gaynor
2013-10-23Fixed #21298 -- Fixed E301 pep8 warningsAlasdair Nicol
2013-10-18Fixed #21287 -- Fixed E123 pep8 warningsAlasdair Nicol
2013-09-19Fixed #9532 -- Added min_num and validate_min on formsets.yokomizor
2013-09-16Fixed #17627 -- Renamed util.py files to utils.pyTim Graham
2013-09-06Fixed a number of flake8 errors -- particularly around unused imports and loc...Alex Gaynor
2013-08-30Fixed #20989 -- Removed useless explicit list comprehensions.Simon Charette
2013-07-29Removed most of absolute_import importsClaude Paroz
2013-06-22Fixed 17478 -- Allowed queryset overriding in BaseModelFormSet initClaude Paroz
2013-06-19Removed several unused imports.Aymeric Augustin
2013-06-18Fixed #20199 -- Allow ModelForm fields to override error_messages from model ...Loic Bistuer
2013-06-16Fixed #20464 -- Added a `total_error_count` method on formsets.Baptiste Mispelon
2013-05-20Fixed #20403 -- Ignore forms marked for deletion when validating max_num.Ryan Kaskel
2013-05-18Fixed #11160 - Ensure full_clean is called from non_form_errorsSenko Rasic
2013-05-17Replaced an antiquated pattern.Aymeric Augustin
2013-05-04Used ngettext in a formsets error messageClaude Paroz
2013-03-28Fixed spelling errorsGavin Wahl
2013-03-21Fixed #20084 -- Provided option to validate formset max_num on server.Andrew Gorcester
2013-02-19Added a default limit to the maximum number of forms in a formset.Aymeric Augustin
2013-02-08Fixed #18906 -- Ignored to-be-deleted forms in formset validate_uniqueClaude Paroz
2013-01-03Fixed #19545 -- Make sure media/is_multipart work with empty formsetsSimon Charette
2013-01-01Removed unusable parameters to empty_form propertyClaude Paroz
2012-12-06Fixed #18574 -- Make BaseFormSet.is_valid call its underlying forms' is_validAndreas Hug
2012-11-03Fixed #18963 -- Used a subclass-friendly patternAymeric Augustin
2012-10-13Fixed #16479 - Forms generated from formsets use ErrorList instead of supplie...Ludovic Delaveau
2012-09-06Made use of property decorator in formsets.pyClaude Paroz
2012-08-30Fixed #18751 -- Cleaned up BaseFormSet._should_delete_formClaude Paroz
2012-08-13[py3] Avoided comparison with None value in formsetsClaude Paroz
2012-08-12[py3] Refactored __unicode__ to __str__.Aymeric Augustin
2012-08-08[py3] Replaced __nonzero__ by __bool__Claude Paroz
2012-08-03Replaced some byte strings by str() callsClaude Paroz
2012-07-22[py3] Added Python 3 compatibility for xrange.Aymeric Augustin
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-01-15Added support for specifying initial values to model formsets and inline form...Ramiro Morales
2011-10-18Remove comments referencing encryption. Django doesn't do encryption.Paul McMillan
2011-10-17remove some relative imports from djangoAlex Gaynor
2011-09-10Fixed #11404. Added ``FormSet.has_changed``, for consistancy with ``Form.has...Alex Gaynor
2011-09-10Make ``Formset.__getitem__`` O(1), rather than O(n). If you override ``__ite...Alex Gaynor
2011-09-10Fixed #15722: ensure formsets evaluate to True even if they have no forms. Th...Karen Tracey