Skip to content

Commit

Permalink
Fixed #9884 -- Corrected template example in model forms documentatio…
Browse files Browse the repository at this point in the history
…n, thanks bradmontgomery.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9676 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
gdub committed Dec 23, 2008
1 parent 0573712 commit 7bf9626
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/topics/forms/modelforms.txt
Expand Up @@ -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>
Expand Down

0 comments on commit 7bf9626

Please sign in to comment.