Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/docs/topics/forms/formsets.txt
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed #14655 -- Made formsets iterable. This allows a ↵Russell Keith-Magee2010-12-191-7/+21
| | | | | | slightly more natural iteration API (`for form in formsets`), and allows you to easily override the form rendering order. Thanks to Kent Hauser for the suggestion and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14986 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #14897 -- fixed some synax highlighting in the ↵Alex Gaynor2010-12-131-0/+2
| | | | | | formset documentation. Thanks to marcusf for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14912 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #11418 -- formset.cleaned_data no longer raises ↵Honza Král2010-11-211-4/+9
| | | | | | | | | AttributeError when is_valid is True. Thanks mlavin! This also introduces a slightly backwards-incompatible change in FormSet's behavior, see the release docs for details. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14667 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #14141: docs now use the :doc: construct for links ↵Jacob Kaplan-Moss2010-08-191-1/+0
| | | | | | | | between documents. Thanks, Ramiro Morales. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13608 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #13524 -- Added backwards compatibility and ↵Russell Keith-Magee2010-05-121-6/+3
| | | | | | feature notes regarding admin inlines and formsets. Thanks to Ramiro Morales and Gabriel Hurley. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13241 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #11908 -- Clarified the role and usage of the ↵Russell Keith-Magee2010-05-101-4/+11
| | | | | | ManagementForm in formsets. Thanks to timo for the draft patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13222 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #12505 -- Clarified the use of the extra argument ↵Russell Keith-Magee2010-05-101-3/+4
| | | | | | in formsets. Thanks to Andreas for the report, and timo for the draft patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13218 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #13023 - Removed ambiguity with regard to the ↵Jannis Leidel2010-03-281-8/+20
| | | | | | max_num option of formsets and as a result of admin inlines. Thanks to Gabriel Hurley for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12872 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Updated formset docs to contain the new management form ↵Jannis Leidel2010-02-011-1/+5
| | | | | | field for max_num values. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12373 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #12508 - Added ability to dynamically add inlines ↵Jannis Leidel2010-01-261-0/+9
| | | | | | | | | | in the admin app. Refs #13. Also introduces an ``empty_form`` attribute on formsets to make it easier to implement dynamic forms. Many thanks to Zain Memon for the initial patch from his Summer of Code 2009 project, Stanislaus Madueke for his django-dynamic-formset app and all the other people helping out. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12297 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #10989 -- Fixed typos in formset and widget-media ↵Adrian Holovaty2010-01-101-1/+1
| | | | | | docs. Thanks, falken@mixworx.net and ramiro git-svn-id: http://code.djangoproject.com/svn/django/trunk@12168 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #12053 - form examples don't validate according to w3cLuke Plant2010-01-041-2/+2
| | | | | | | | Thanks to skyl for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12086 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #10287 -- Added better examples in the docs of ↵Russell Keith-Magee2009-07-151-13/+36
| | | | | | formset validation. Thanks to Andrew Badr for the text. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11234 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #10795: added a link to model formsets docs from ↵Jacob Kaplan-Moss2009-05-141-0/+4
| | | | | | the formsets docs. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10774 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed a whole bunch of small docs typos, errors, and ↵Jacob Kaplan-Moss2009-04-031-2/+6
| | | | | | | | | | ommissions. Fixes #8358, #8396, #8724, #9043, #9128, #9247, #9267, #9267, #9375, #9409, #9414, #9416, #9446, #9454, #9464, #9503, #9518, #9533, #9657, #9658, #9683, #9733, #9771, #9835, #9836, #9837, #9897, #9906, #9912, #9945, #9986, #9992, #10055, #10084, #10091, #10145, #10245, #10257, #10309, #10358, #10359, #10424, #10426, #10508, #10531, #10551, #10635, #10637, #10656, #10658, #10690, #10699, #19528. Thanks to all the respective authors of those tickets. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10371 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #9284. Fixed #8813. BaseModelFormSet now calls ↵Joseph Kocherhans2009-03-301-0/+14
| | | | | | | | ModelForm.save(). This is backwards-incompatible if you were doing things to 'initial' in BaseModelFormSet.__init__, or if you relied on the internal _total_form_count or _initial_form_count attributes of BaseFormSet. Those attributes are now public methods. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10190 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #9780 -- Fixed an undefined internal link in the ↵Gary Wilson Jr2008-12-231-0/+2
| | | | | | model forms documentation, thanks ramiro. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9670 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #9531 -- Fixed some awkward wording in the docs. ↵Malcolm Tredinnick2008-11-141-2/+2
| | | | | | Thanks, gsf. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9434 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #8979 -- Made a bunch of typo/formatting fixes to ↵Adrian Holovaty2008-09-091-2/+6
| | | | | | the docs. Thanks, ramiro git-svn-id: http://code.djangoproject.com/svn/django/trunk@8987 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #8435 -- Documented the `prefix` option on formsets.Brian Rosner2008-08-271-0/+29
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@8631 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Massive reorganization of the docs. See the new docs ↵Jacob Kaplan-Moss2008-08-241-0/+329
online at http://docs.djangoproject.com/. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8506 bcc190cf-cafb-0310-a4f2-bffc1f526a37