diff options
| author | Carlton Gibson <carlton@noumenal.es> | 2020-09-02 08:29:01 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-02 08:29:01 +0200 |
| commit | 0bf627f0b2f868cdcc53ac12cc7f390901d4b83d (patch) | |
| tree | 5ed7b0252891ec61665f28e23fcccf8aaaf0bda8 /docs/ref | |
| parent | 9d5d865fd6e989abe60fdf02e7f97fd4d98178a4 (diff) | |
Refs #11390 -- Clarified dual-calling of ChoiceField.choices callable.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/forms/fields.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/forms/fields.txt b/docs/ref/forms/fields.txt index c40205d89d..fb6c14595c 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`` -------------------- |
