From c587bd5a9405973e7b62f2698822956bdd639434 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Tue, 19 Aug 2014 07:17:23 -0400 Subject: [PATCH] Fixed #17272 -- Documented that non-editable fields are skipped during model validation. Thanks mitar for the report. --- docs/ref/models/fields.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt index 0466534e07..42b6cd2217 100644 --- a/docs/ref/models/fields.txt +++ b/docs/ref/models/fields.txt @@ -226,7 +226,8 @@ See that documentation for other caveats. .. attribute:: Field.editable If ``False``, the field will not be displayed in the admin or any other -:class:`~django.forms.ModelForm`. Default is ``True``. +:class:`~django.forms.ModelForm`. They are also skipped during :ref:`model +validation `. Default is ``True``. ``error_messages`` ------------------