Skip to content

Commit

Permalink
Documented meta.Admin list_select_related option from [1092]
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1108 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Nov 6, 2005
1 parent 1b626e4 commit af4bef1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/model-api.txt
Expand Up @@ -900,6 +900,14 @@ object, which takes the following parameters. All are optional.


(This example also has ``search_fields`` defined; see below). (This example also has ``search_fields`` defined; see below).


``list_select_related``
Either ``True`` or ``False``. Default is ``False``. If ``True``, the admin
change list page will use the ``select_related`` database-API parameter in
its query that retrieves the list of items.

Note that Django will use ``select_related``, regardless of this setting,
if one of the ``list_display`` fields is a ``ForeignKey``.

``ordering`` ``ordering``
A list or tuple (see the `META options`_, above) that gives a A list or tuple (see the `META options`_, above) that gives a
different ordering for the admin change list. If this isn't given, the different ordering for the admin change list. If this isn't given, the
Expand Down

0 comments on commit af4bef1

Please sign in to comment.