From 744d06528e593f57ad85399210a386f221a828d9 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 20 May 2007 20:43:51 +0000 Subject: [PATCH] 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 --- docs/newforms.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/newforms.txt b/docs/newforms.txt index aaabebe5ce..5516f60683 100644 --- a/docs/newforms.txt +++ b/docs/newforms.txt @@ -675,6 +675,11 @@ The easiest way is to iterate over the form's fields, with +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::