Skip to content

Commit

Permalink
[1.6.x] Fixed #21902 -- Documented search order for list_display.
Browse files Browse the repository at this point in the history
Backport of 09b725f from master.
  • Loading branch information
kobuz authored and bmispelon committed Feb 23, 2014
1 parent 882f2a5 commit 98070b9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/ref/contrib/admin/index.txt
Expand Up @@ -617,6 +617,17 @@ subclass::
the HTML output, in the form of ``column-<field_name>`` on each ``<th>`` the HTML output, in the form of ``column-<field_name>`` on each ``<th>``
element. This can be used to set column widths in a CSS file for example. element. This can be used to set column widths in a CSS file for example.


* Django will try to interpret every element of ``list_display`` in this
order:

* A field of the model.
* A callable.
* A string representing a ``ModelAdmin`` attribute.
* A string representing a model attribute.

For example if you have ``first_name`` as a model field and
as a ``ModelAdmin`` attribute, the model field will be used.



.. attribute:: ModelAdmin.list_display_links .. attribute:: ModelAdmin.list_display_links


Expand Down

0 comments on commit 98070b9

Please sign in to comment.