diff options
Diffstat (limited to 'docs/ref/forms')
| -rw-r--r-- | docs/ref/forms/api.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/ref/forms/api.txt b/docs/ref/forms/api.txt index c05430c64e..3c17827800 100644 --- a/docs/ref/forms/api.txt +++ b/docs/ref/forms/api.txt @@ -498,6 +498,8 @@ include ``%s`` -- then the library will act as if ``auto_id`` is ``True``. By default, ``auto_id`` is set to the string ``'id_%s'``. +.. attribute:: Form.label_suffix + Normally, a colon (``:``) will be appended after any label name when a form is rendered. It's possible to change the colon to another character, or omit it entirely, using the ``label_suffix`` parameter:: @@ -650,12 +652,17 @@ To separately render the label tag of a form field, you can call its >>> f = ContactForm(data) >>> print(f['message'].label_tag()) - <label for="id_message">Message</label> + <label for="id_message">Message:</label> Optionally, you can provide the ``contents`` parameter which will replace the auto-generated label tag. An optional ``attrs`` dictionary may contain additional attributes for the ``<label>`` tag. +.. versionchanged:: 1.6 + + The label now includes the form's :attr:`~django.forms.Form.label_suffix` + (a semicolon, by default). + .. method:: BoundField.css_classes() When you use Django's rendering shortcuts, CSS classes are used to |
