[1.10.x] Refs #11078 -- Doc'd Meta inheritance in proxy models.

Backport of e8728f03f0 from master
This commit is contained in:
Jonatas CD 2016-09-28 18:21:03 +02:00 committed by Tim Graham
parent 26fd712128
commit fbf59a2967
1 changed files with 5 additions and 0 deletions

View File

@ -1084,6 +1084,8 @@ created directly as a ``Place`` object or was the parent of some other class),
referring to ``p.restaurant`` would raise a ``Restaurant.DoesNotExist``
exception.
.. _meta-and-multi-table-inheritance:
``Meta`` and multi-table inheritance
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ -1212,6 +1214,9 @@ order by the ``last_name`` attribute when you use the proxy. This is easy::
Now normal ``Person`` queries will be unordered
and ``OrderedPerson`` queries will be ordered by ``last_name``.
Proxy models inherit ``Meta`` attributes :ref:`in the same way as regular
models <meta-and-multi-table-inheritance>`.
``QuerySet``\s still return the model that was requested
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~