Changed an overlooked occurrence of repr() to str(). Pointed out by Jeremy

Dunck on the mailing list.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@2967 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2006-05-23 01:34:06 +00:00
parent f953c8afb6
commit 8fbf9714c3
1 changed files with 2 additions and 2 deletions

View File

@ -284,8 +284,8 @@ Here's what it looks like at this point:
:alt: Polls change list page :alt: Polls change list page
:target: http://media.djangoproject.com/img/doc/tutorial/admin04.png :target: http://media.djangoproject.com/img/doc/tutorial/admin04.png
By default, Django displays the ``repr()`` of each object. But it'd be more By default, Django displays the ``str()`` of each object. But sometimes it'd
helpful if we could display individual fields. To do that, use the be more helpful if we could display individual fields. To do that, use the
``list_display`` option, which is a tuple of field names to display, as columns, ``list_display`` option, which is a tuple of field names to display, as columns,
on the change list page for the object:: on the change list page for the object::