Commit e501d4c5 authored by Ismail Badawi's avatar Ismail Badawi Committed by Tim Graham
Browse files

Fixed #23597 -- Clarified the manager that {Single,Multiple}ObjectMixin.model uses.

parent 1e224b39
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -56,7 +56,8 @@ MultipleObjectMixin

        The model that this view will display data for. Specifying ``model
        = Foo`` is effectively the same as specifying ``queryset =
        Foo.objects.all()``.
        Foo.objects.all()``, where ``objects`` stands for ``Foo``’s
        :ref:`default manager <default-managers>`.

    .. attribute:: queryset

+2 −1
Original line number Diff line number Diff line
@@ -16,7 +16,8 @@ SingleObjectMixin

        The model that this view will display data for. Specifying ``model
        = Foo`` is effectively the same as specifying ``queryset =
        Foo.objects.all()``.
        Foo.objects.all()``, where ``objects`` stands for ``Foo``’s
        :ref:`default manager <default-managers>`.

    .. attribute:: queryset

+5 −0
Original line number Diff line number Diff line
@@ -169,6 +169,11 @@ For example::
This example allows you to request ``Person.authors.all()``, ``Person.editors.all()``,
and ``Person.people.all()``, yielding predictable results.

.. _default-managers:

Default managers
~~~~~~~~~~~~~~~~

If you use custom ``Manager`` objects, take note that the first ``Manager``
Django encounters (in the order in which they're defined in the model) has a
special status. Django interprets the first ``Manager`` defined in a class as