[1.0.X] Fixed #9884 -- Corrected template example in model forms documentation, thanks bradmontgomery.

Backport of r9676 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9677 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Gary Wilson Jr 2008-12-23 05:22:10 +00:00
parent 44239004db
commit 1d37663aef
1 changed files with 2 additions and 2 deletions

View File

@ -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>