Commit 7b9fe15a authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #10009 -- Corrected a field reference in an example on rendering hidden...

Fixed #10009 -- Corrected a field reference in an example on rendering hidden fields. Thanks to karihre@gmail.com for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9862 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 39dd4457
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -323,7 +323,7 @@ these two methods::
                {# Include the hidden fields in the form #}
                {% if forloop.first %}
                    {% for hidden in form.hidden_fields %}
                    {{ field }}
                    {{ hidden }}
                    {% endfor %}
                {% endif %}