1
0
mirror of https://github.com/django/django.git synced 2025-07-19 09:09:13 +00:00

[1.0.X]: Fixed #9946 -- Removed redundant mention of needing to define list_display.

Backport of r10237 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10238 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Gary Wilson Jr 2009-03-30 23:33:08 +00:00
parent 9bbf94112f
commit 9d808c14a5

View File

@ -400,9 +400,6 @@ the change list page::
list_display = ('first_name', 'last_name', 'birthday') list_display = ('first_name', 'last_name', 'birthday')
list_display_links = ('first_name', 'last_name') list_display_links = ('first_name', 'last_name')
Finally, note that in order to use ``list_display_links``, you must define
``list_display``, too.
``list_filter`` ``list_filter``
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~