summaryrefslogtreecommitdiff
path: root/docs/ref/forms
diff options
context:
space:
mode:
authorCarlton Gibson <carlton@noumenal.es>2020-09-02 08:29:01 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-09-02 08:29:33 +0200
commit8178c4fbfba8c425ce2591662dc915722224f7f1 (patch)
tree2f4f284718cbddd0fcc38a45475370874fe95b39 /docs/ref/forms
parent2610a3909e43cd2d399722d280b71529fc4b7a75 (diff)
[3.1.x] Refs #11390 -- Clarified dual-calling of ChoiceField.choices callable.
Backport of 0bf627f0b2f868cdcc53ac12cc7f390901d4b83d from master
Diffstat (limited to 'docs/ref/forms')
-rw-r--r--docs/ref/forms/fields.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/forms/fields.txt b/docs/ref/forms/fields.txt
index ba4bce3c90..89cb47a393 100644
--- a/docs/ref/forms/fields.txt
+++ b/docs/ref/forms/fields.txt
@@ -413,8 +413,8 @@ For each field, we describe the default widget used if you don't specify
accepts the same formats as the ``choices`` argument to a model field.
See the :ref:`model field reference documentation on choices
<field-choices>` for more details. If the argument is a callable, it is
- evaluated each time the field's form is initialized. Defaults to an
- empty list.
+ evaluated each time the field's form is initialized, in addition to
+ during rendering. Defaults to an empty list.
``TypedChoiceField``
--------------------