index
:
chango.git
devmain
fix-31295
initial-branch
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
forms
/
formsets.py
Age
Commit message (
Expand
)
Author
2012-01-15
Added support for specifying initial values to model formsets and inline form...
Ramiro Morales
2011-10-18
Remove comments referencing encryption. Django doesn't do encryption.
Paul McMillan
2011-10-17
remove some relative imports from django
Alex Gaynor
2011-09-10
Fixed #11404. Added ``FormSet.has_changed``, for consistancy with ``Form.has...
Alex Gaynor
2011-09-10
Make ``Formset.__getitem__`` O(1), rather than O(n). If you override ``__ite...
Alex Gaynor
2011-09-10
Fixed #15722: ensure formsets evaluate to True even if they have no forms. Th...
Karen Tracey
2011-08-12
Fixed #16584 -- Fixed a bunch of typos in code comments. Thanks, Bernhard Essl.
Jannis Leidel
2011-05-01
Replaced old-style with new-style decorator syntax.
Jannis Leidel
2011-02-21
Fixed #15349 - Bound FormSet produces bound empty_form
Luke Plant
2010-12-21
Fixed #4976 -- Stopped humanize template tags to raise a TypeError if passed ...
Jannis Leidel
2010-12-19
Fixed #14655 -- Made formsets iterable. This allows a slightly more natural i...
Russell Keith-Magee
2010-11-21
Fixed #11418 -- formset.cleaned_data no longer raises AttributeError when is_...
Honza Král
2010-10-18
Fixed #12074 -- Adding .as_p and as_ul methods to FormSet. Thanks arthurdeber...
Honza Král
2010-08-06
Fixed #12746 -- Updated sorting calls to use 'key' instead of 'cmp'. This wil...
Russell Keith-Magee
2010-03-27
Fixed #13023 - Removed ambiguity with regard to the max_num option of formset...
Jannis Leidel
2010-03-12
Fixed #11801 -- Corrected form validation to ensure you can still get deleted...
Russell Keith-Magee
2010-02-23
Fixed #12878. Formset-wide errors are now rendered properly as html.
Joseph Kocherhans
2010-02-01
Fixed #12692 - Properly handle the extra clause of admin inline formsets. Als...
Jannis Leidel
2010-01-26
Fixed #12508 - Added ability to dynamically add inlines in the admin app.
Jannis Leidel
2010-01-05
Merged soc2009/model-validation to trunk. Thanks, Honza!
Joseph Kocherhans
2009-04-28
Fixed #10082 -- Modified BaseFormSet so that ordering checks work when the fo...
Russell Keith-Magee
2009-03-31
Forms in model formsets and inline formsets can now be deleted even if they d...
Joseph Kocherhans
2009-03-30
Fixed #9587. Formset.is_valid() now returns True if an invalid form is marked...
Joseph Kocherhans
2009-03-30
Fixed #9284. Fixed #8813. BaseModelFormSet now calls ModelForm.save().
Joseph Kocherhans
2009-03-17
Fixed `BaseFormSet.is_multipart()` so that it doesn't bomb when called on an ...
Jacob Kaplan-Moss
2009-03-10
Fixed #10271, #10281 -- Fixed the handling multiple inline models that share...
Russell Keith-Magee
2008-08-27
Corrected a couple of typos in docstrings of methods in BaseFormSet.
Brian Rosner
2008-08-25
Fixed #8543: added translation markings to can_delete and can_order form labe...
Jacob Kaplan-Moss
2008-07-23
Made the semi-private _max_form_count live on the public API of formsets by r...
Brian Rosner
2008-07-22
Fixed #7847 -- Removed a whole bunch of unused imports from throughout the co...
Adrian Holovaty
2008-07-19
Fixed #7741: django.newforms is now django.forms. This is obviously a backwar...
Jacob Kaplan-Moss