summaryrefslogtreecommitdiff
path: root/docs/topics/forms
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-01-02 10:25:57 -0500
committerTim Graham <timograham@gmail.com>2017-01-17 20:52:05 -0500
commite27e4c03399f610e0db1fb9b881095d762fda2b7 (patch)
tree11bd3fc4e762fad072ef29c0498daab3cba49554 /docs/topics/forms
parent401c5b2e42bf9134d9221f446765dd0777306f0b (diff)
Removed versionadded/changed annotations for 1.10.
Diffstat (limited to 'docs/topics/forms')
-rw-r--r--docs/topics/forms/media.txt4
-rw-r--r--docs/topics/forms/modelforms.txt10
2 files changed, 0 insertions, 14 deletions
diff --git a/docs/topics/forms/media.txt b/docs/topics/forms/media.txt
index adbd2c377e..0bdf237a21 100644
--- a/docs/topics/forms/media.txt
+++ b/docs/topics/forms/media.txt
@@ -249,10 +249,6 @@ Or if :mod:`~django.contrib.staticfiles` is configured using the
<script type="text/javascript" src="https://static.example.com/animations.27e20196a850.js"></script>
<script type="text/javascript" src="http://othersite.com/actions.js"></script>
-.. versionchanged:: 1.10
-
- Older versions didn't serve assets using :mod:`django.contrib.staticfiles`.
-
``Media`` objects
=================
diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt
index eb397a3d4a..b0115cef7e 100644
--- a/docs/topics/forms/modelforms.txt
+++ b/docs/topics/forms/modelforms.txt
@@ -342,16 +342,6 @@ there is one, for that field. This behavior doesn't apply to fields that use
form submission. Use a custom form field or widget if you're designing an API
and want the default fallback for a :class:`~django.db.models.BooleanField`.
-.. versionchanged:: 1.10.1
-
- Older versions don't have the exception for
- :class:`~django.forms.CheckboxInput` which means that unchecked checkboxes
- receive a value of ``True`` if that's the model field default.
-
-.. versionchanged:: 1.10.2
-
- The :meth:`~django.forms.Widget.value_omitted_from_data` method was added.
-
This ``save()`` method accepts an optional ``commit`` keyword argument, which
accepts either ``True`` or ``False``. If you call ``save()`` with
``commit=False``, then it will return an object that hasn't yet been saved to