From fdd3cb4930b0e4386ac63b98f7e1b81670eedfaa Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 16 Sep 2008 05:22:08 +0000 Subject: [PATCH] Edited forms/index.txt changes from [9030] git-svn-id: http://code.djangoproject.com/svn/django/trunk@9040 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/forms/index.txt | 54 +++++++++++++++++++------------------ 1 file changed, 28 insertions(+), 26 deletions(-) diff --git a/docs/topics/forms/index.txt b/docs/topics/forms/index.txt index 8ef16cdd39..fb3dcb480a 100644 --- a/docs/topics/forms/index.txt +++ b/docs/topics/forms/index.txt @@ -45,7 +45,7 @@ The library deals with these concepts: Form Media The CSS and JavaScript resources that are required to render a form. - + The library is decoupled from the other Django components, such as the database layer, views and templates. It relies only on Django settings, a couple of ``django.utils`` helper functions and Django's internationalization hooks (but @@ -99,7 +99,7 @@ The standard pattern for processing a form in a view looks like this: return HttpResponseRedirect('/thanks/') # Redirect after POST else: form = ContactForm() # An unbound form - + return render_to_response('contact.html', { 'form': form, }) @@ -148,11 +148,11 @@ Extending the above example, here's how the form data could be processed: message = form.cleaned_data['message'] sender = form.cleaned_data['sender'] cc_myself = form.cleaned_data['cc_myself'] - + recipients = ['info@example.com'] if cc_myself: recipients.append(sender) - + from django.core.mail import send_mail send_mail(subject, message, sender, recipients) return HttpResponseRedirect('/thanks/') # Redirect after POST @@ -188,7 +188,7 @@ wrapped in a paragraph. Here's the output for our example template::

- + Note that each form field has an ID attribute set to ``id_``, which is referenced by the accompanying label tag. This is important for ensuring forms are accessible to assistive technology such as screen reader software. You @@ -253,9 +253,9 @@ over them:: Looping over the form's fields ------------------------------ -If you are using the similar HTML for each of your form fields, you can +If you're the same HTML for each of your form fields, you can reduce duplicate code by looping through each field in turn using -``{% for field in form %}``:: +a ``{% for %}`` loop::
{% for field in form %} @@ -268,42 +268,44 @@ reduce duplicate code by looping through each field in turn using
Within this loop, ``{{ field }}`` is an instance of :class:`BoundField`. -``BoundField`` also has the following attributes which can be useful in your +``BoundField`` also has the following attributes, which can be useful in your templates: ``{{ field.label }}`` - The label of the field, e.g. ``Name``. - + The label of the field, e.g. ``E-mail address``. + ``{{ field.label_tag }}`` - The field's label wrapped in the appropriate HTML ``