Commit fdbe038c authored by Young Yang's avatar Young Yang Committed by Tim Graham
Browse files

[1.6.x] Fixed #23955 -- Corrected formset fields in topic guide.

Backport of f0c7a6f3 from master
parent 7e47c3e6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -560,9 +560,9 @@ If you manually render fields in the template, you can render
    <form method="post" action="">
        {{ formset.management_form }}
        {% for form in formset %}
            {{ form.id }}
            <ul>
                <li>{{ form.title }}</li>
                <li>{{ form.pub_date }}</li>
                {% if formset.can_delete %}
                    <li>{{ form.DELETE }}</li>
                {% endif %}