Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Small cleanup of docs/model-api.txt change from [4625]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4626 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Feb 26, 2007
1 parent 96604fd commit b21fd1e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions docs/model-api.txt
Expand Up @@ -498,10 +498,9 @@ or outside your model class altogether::
class Foo(models.Model):
gender = models.CharField(maxlength=1, choices=GENDER_CHOICES)

For each field on your model which has ``choices`` set, Django will
add a method to retrieve the human-readable name for the field's
current value; see `get_FOO_display`_ in the database API
documentation.
For each model field that has ``choices`` set, Django will add a method to
retrieve the human-readable name for the field's current value. See
`get_FOO_display`_ in the database API documentation.

.. _get_FOO_display: ../db_api/#get-foo-display

Expand Down

0 comments on commit b21fd1e

Please sign in to comment.