summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2016-02-20 14:40:07 +0100
committerClaude Paroz <claude@2xlibre.net>2016-02-21 00:24:20 +0100
commitd43156e1e984d7e0848b7d4db218877a29d617b4 (patch)
tree689f1d81d61f47cf85dce6e8e1807aa08a2b6dcc /docs/ref
parent6670da75ff8a59b2ec0b465846e3f76aab9155b2 (diff)
Fixed #26238 -- Raised explicit error for non-editable field in ModelForm
Thanks Luke Crouch for the report and Simon Charette for the review.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/models/fields.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
index 4a1c9eefbb..de493dda67 100644
--- a/docs/ref/models/fields.txt
+++ b/docs/ref/models/fields.txt
@@ -415,7 +415,8 @@ guaranteed to fit numbers from ``-9223372036854775808`` to
A field to store raw binary data. It only supports ``bytes`` assignment. Be
aware that this field has limited functionality. For example, it is not possible
-to filter a queryset on a ``BinaryField`` value.
+to filter a queryset on a ``BinaryField`` value. It is also not possible to
+include a ``BinaryField`` in a :class:`~django.forms.ModelForm`.
.. admonition:: Abusing ``BinaryField``