[1.0.X] Fixed #9896 -- Corrected a couple uses of `formset.forms`, thanks aglzen.

Backport of r9672 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9673 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Gary Wilson Jr 2008-12-23 00:15:03 +00:00
parent 518e19a363
commit 47de671948
1 changed files with 2 additions and 2 deletions

View File

@ -591,7 +591,7 @@ Third, you can manually render each field::
<form method="POST" action="">
{{ formset.management_form }}
{% for form in formset.formset %}
{% for form in formset.forms %}
{% for fields in form %}
{{ field }}
{% endfor %}
@ -604,7 +604,7 @@ if you were rendering the ``name`` and ``age`` fields of a model::
<form method="POST" action="">
{{ formset.management_form }}
{% for form in formset.formset %}
{% for form in formset.forms %}
{{ form.id }}
<ul>
<li>{{ form.name }}</li>