summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/models/options.txt9
1 files changed, 4 insertions, 5 deletions
diff --git a/docs/ref/models/options.txt b/docs/ref/models/options.txt
index 4ae105af92..6bbfa30a53 100644
--- a/docs/ref/models/options.txt
+++ b/docs/ref/models/options.txt
@@ -189,11 +189,6 @@ Django quotes column and table names behind the scenes.
"-" prefix, which indicates descending order. Fields without a leading "-" will
be ordered ascending. Use the string "?" to order randomly.
- .. note::
-
- Regardless of how many fields are in :attr:`~Options.ordering`, the admin
- site uses only the first field.
-
For example, to order by a ``pub_date`` field ascending, use this::
ordering = ['pub_date']
@@ -206,6 +201,10 @@ Django quotes column and table names behind the scenes.
ordering = ['-pub_date', 'author']
+ .. versionchanged:: 1.4
+ The Django admin honors all elements in the list/tuple; before 1.4, only
+ the first one was respected.
+
``permissions``
---------------