summaryrefslogtreecommitdiff
path: root/docs/ref/forms/api.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-09-02 21:49:07 -0400
committerTim Graham <timograham@gmail.com>2017-09-22 12:51:18 -0400
commit5446b72003790fc98bd926f7196b26cc5db63c5a (patch)
tree0ff9fe34b7f6c1c79e84d8f4fbea52fdfeb0baf3 /docs/ref/forms/api.txt
parent2bd207ada0367debe8c8e298203435d5c88c14bd (diff)
Removed versionadded/changed annotations for 1.11.
Diffstat (limited to 'docs/ref/forms/api.txt')
-rw-r--r--docs/ref/forms/api.txt9
1 files changed, 0 insertions, 9 deletions
diff --git a/docs/ref/forms/api.txt b/docs/ref/forms/api.txt
index e68222f977..5e001a2f62 100644
--- a/docs/ref/forms/api.txt
+++ b/docs/ref/forms/api.txt
@@ -261,8 +261,6 @@ precedence::
.. method:: Form.get_initial_for_field(field, field_name)
-.. versionadded:: 1.11
-
Use :meth:`~Form.get_initial_for_field()` to retrieve initial data for a form
field. It retrieves data from :attr:`Form.initial` and :attr:`Field.initial`,
in that order, and evaluates any callable initial values.
@@ -462,11 +460,6 @@ include ``checked`` if appropriate::
<tr><th><label for="id_sender">Sender:</label></th><td><input type="email" name="sender" id="id_sender" value="foo@example.com" required /></td></tr>
<tr><th><label for="id_cc_myself">Cc myself:</label></th><td><input type="checkbox" name="cc_myself" id="id_cc_myself" checked /></td></tr>
-.. versionchanged:: 1.11
-
- The ``checked`` attribute was changed to use HTML5 boolean syntax rather
- than ``checked="checked"``.
-
This default output is a two-column HTML table, with a ``<tr>`` for each field.
Notice the following:
@@ -734,8 +727,6 @@ Configuring the rendering of a form's widgets
.. attribute:: Form.default_renderer
-.. versionadded:: 1.11
-
Specifies the :doc:`renderer <renderers>` to use for the form. Defaults to
``None`` which means to use the default renderer specified by the
:setting:`FORM_RENDERER` setting.