Commit bcae5fc1 authored by Gary Wilson Jr's avatar Gary Wilson Jr
Browse files

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
parent c5653529
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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>