Fixed #14307 -- Linked ChoiceField.choices docs to Field.choices docs to explain the formatting options available. Thanks to adamv for the report and Russ for the suggested fix.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14231 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
2197b56f30
commit
7f5698de1d
|
@ -352,7 +352,11 @@ Takes one extra required argument:
|
|||
.. attribute:: ChoiceField.choices
|
||||
|
||||
An iterable (e.g., a list or tuple) of 2-tuples to use as choices for this
|
||||
field.
|
||||
field. This argument accepts the same formats as the ``choices`` argument
|
||||
to a model field. See the `model field reference documentation on choices`_
|
||||
for more details.
|
||||
|
||||
.. _model field reference documentation on choices: ../models/fields#choices
|
||||
|
||||
``TypedChoiceField``
|
||||
~~~~~~~~~~~~~~~~~~~~
|
||||
|
|
Loading…
Reference in New Issue