Class MultipleObjectMixin
A mixin for views manipulating multiple objects.
Declaration
source linkDocumentation
Methods
▷ def get_allow_empty(self) Return ``True`` if the view should display empty lists and ``False`` if a 404 should be raised instead.
▶ def get_context_data(self, *, object_list=None, **kwargs) override Get the context for this view.
▶ def get_ordering(self) Return the field or fields to use for ordering the queryset.
Overrides
This method is overriden in:
▷ def get_paginate_by(self, queryset) Get the number of items to paginate by, or ``None`` for no pagination.
▷ def get_paginate_orphans(self) Return the maximum number of orphans extend the last page by when paginating.
▶ def get_paginator(self, queryset, per_page, orphans=0, allow_empty_first_page=True, **kwargs) Return an instance of the paginator for this view.
Overrides
This method is overriden in:
▶ def get_queryset(self) Return the list of items for this view.
The return value must be an iterable and may be an instance of
`QuerySet` in which case `QuerySet` specific behavior will be enabled.
Overrides
This method is overriden in:
Subclasses
Reexports