Added small note to docs/newforms.txt 'Complex template output' section

git-svn-id: http://code.djangoproject.com/svn/django/trunk@5299 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-05-20 20:43:51 +00:00
parent 1bf43df33d
commit 744d06528e
1 changed files with 5 additions and 0 deletions

View File

@ -675,6 +675,11 @@ The easiest way is to iterate over the form's fields, with
<input type="submit" />
</form>
This iteration technique is useful if you want to apply the same HTML
formatting to each field, or if you don't know the names of the form fields
ahead of time. Note that the fields will be listed in the order in which
they're defined in the ``Form`` class.
Alternatively, you can arrange the form's fields explicitly, by name. Do that
by accessing ``{{ form.fieldname }}``, where ``fieldname`` is the field's name.
For example::