diff options
| author | Tamer Sherif <tamer.sherif@flyingelephantlab.com> | 2019-09-29 10:40:16 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-10-07 11:10:38 +0200 |
| commit | 3ea957b543e275cb3cd7e86c9858922b1f1711c1 (patch) | |
| tree | feceb97b9b121cb49d0edf8496b6fe8b5b5fc5a4 /docs/ref | |
| parent | 4917b53e501f22d2e4ac1b4137aad0ede5fb9674 (diff) | |
[3.0.x] Refs #10348 -- Doc'd that ModelAdmin ignores list_select_related when QuerySet.select_related() was already called.
Backport of e3f647f4d5fc414f8cb7ab58df5e61a19908c63f from master
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/contrib/admin/index.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt index 68221ede5e..75d8245499 100644 --- a/docs/ref/contrib/admin/index.txt +++ b/docs/ref/contrib/admin/index.txt @@ -1026,6 +1026,12 @@ subclass:: If you need to specify a dynamic value based on the request, you can implement a :meth:`~ModelAdmin.get_list_select_related` method. + .. note:: + + ``ModelAdmin`` ignores this attribute when + :meth:`~django.db.models.query.QuerySet.select_related` was already + called on the changelist's ``QuerySet``. + .. attribute:: ModelAdmin.ordering Set ``ordering`` to specify how lists of objects should be ordered in the |
