Commit 7bf9626a authored by Gary Wilson Jr's avatar Gary Wilson Jr
Browse files

Fixed #9884 -- Corrected template example in model forms documentation, thanks bradmontgomery.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@9676 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 05737128
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -592,8 +592,8 @@ Third, you can manually render each field::
    <form method="POST" action="">
        {{ formset.management_form }}
        {% for form in formset.forms %}
            {% for fields in form %}
                {{ field }}
            {% for field in form %}
                {{ field.label_tag }}: {{ field }}
            {% endfor %}
        {% endfor %}
    </form>