diff options
| author | Tim Graham <timograham@gmail.com> | 2013-07-26 14:43:46 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-07-26 14:45:38 -0400 |
| commit | 8676318d2dae9a570d2314e4e6da8c00aaf2e2a0 (patch) | |
| tree | 86e3bd1bd11dd09d9aaf288357f9feacffb3d363 /docs/releases | |
| parent | 2a979d2a7bec485e4b90b7ae99ace0dd16faa948 (diff) | |
Fixed #20805 -- Removed an extra colon beside checkboxes in the admin.
Thanks CollinAnderson for the report.
Diffstat (limited to 'docs/releases')
| -rw-r--r-- | docs/releases/1.6.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/releases/1.6.txt b/docs/releases/1.6.txt index 73b48edc85..355b107046 100644 --- a/docs/releases/1.6.txt +++ b/docs/releases/1.6.txt @@ -664,7 +664,9 @@ will render something like: <label for="id_my_field">My Field:</label> <input id="id_my_field" type="text" name="my_field" /> If you want to keep the current behavior of rendering ``label_tag`` without -the ``label_suffix``, instantiate the form ``label_suffix=''``. +the ``label_suffix``, instantiate the form ``label_suffix=''``. You can also +customize the ``label_suffix`` on a per-field basis using the new +``label_suffix`` parameter on :meth:`~django.forms.BoundField.label_tag`. Admin views ``_changelist_filters`` GET parameter ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
