summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJames Bennett <ubernostrum@gmail.com>2008-03-30 04:21:50 +0000
committerJames Bennett <ubernostrum@gmail.com>2008-03-30 04:21:50 +0000
commitb8110ed537408ef78027f70c242885c7a955e1bb (patch)
tree197ff4d3b5af15134f81c58db4ae9e6fd06f117e /docs
parenta9ce132657a338fab2326d0de98008f87f85f8fd (diff)
Clean up some awkwardness and confusion in the docs for ``ModelChoiceField``
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7386 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/newforms.txt20
1 files changed, 12 insertions, 8 deletions
diff --git a/docs/newforms.txt b/docs/newforms.txt
index 533ff75185..a2fe000073 100644
--- a/docs/newforms.txt
+++ b/docs/newforms.txt
@@ -1549,12 +1549,15 @@ additional required argument:
``ModelChoiceField``
~~~~~~~~~~~~~~~~~~~~
-Allows the selection of a single model object, suitable for representing a
-foreign key. The method receives an object as an argument and must return a
-string to represent it.
+Allows the selection of a single model object, suitable for
+representing a foreign key.
-The labels for the choice field call the ``__unicode__`` method of the model to
-generate string representations. To provide custom labels, subclass ``ModelChoiceField`` and override ``label_for_model``::
+The labels for the choice field call the ``__unicode__`` method of the
+model to generate string representations to use in the field's
+choices; to provide customized representations,, subclass
+``ModelChoiceField`` and override ``label_for_model``; this method
+will receive an object, and should return a string suitable for
+representing it::
class MyModelChoiceField(ModelChoiceField):
def label_from_instance(self, obj):
@@ -1563,9 +1566,10 @@ generate string representations. To provide custom labels, subclass ``ModelChoic
``ModelMultipleChoiceField``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-Allows the selection of one or more model objects, suitable for representing a
-many-to-many relation. As with ``ModelChoiceField``, you can use
-``label_from_instance`` to customize the object labels.
+Allows the selection of one or more model objects, suitable for
+representing a many-to-many relation. As with ``ModelChoiceField``,
+you can use ``label_from_instance`` to customize the object
+representations.
Creating custom fields
----------------------