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

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9672 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Gary Wilson Jr 2008-12-23 00:13:15 +00:00
parent c565352954
commit bcae5fc1b3
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=""> <form method="POST" action="">
{{ formset.management_form }} {{ formset.management_form }}
{% for form in formset.formset %} {% for form in formset.forms %}
{% for fields in form %} {% for fields in form %}
{{ field }} {{ field }}
{% endfor %} {% endfor %}
@ -604,7 +604,7 @@ if you were rendering the ``name`` and ``age`` fields of a model::
<form method="POST" action=""> <form method="POST" action="">
{{ formset.management_form }} {{ formset.management_form }}
{% for form in formset.formset %} {% for form in formset.forms %}
{{ form.id }} {{ form.id }}
<ul> <ul>
<li>{{ form.name }}</li> <li>{{ form.name }}</li>