views.generic.list.MultipleObjectMixin.get_queryset()

get_queryset() Get the list of items for this view. This must be an iterable and may be a queryset (in which queryset-specific

2016-10-09 18:41:12
views.generic.list.MultipleObjectMixin.paginator_class

paginator_class The paginator class to be used for pagination. By default,

2016-10-09 18:41:13
views.generic.list.MultipleObjectTemplateResponseMixin.get_template_names()

get_template_names() Returns a list of candidate template names. Returns the following list:

2016-10-09 18:41:14
views.generic.list.MultipleObjectMixin.paginate_orphans

paginate_orphans An integer specifying the number of “overflow” objects the last page can contain. This extends the paginate_by

2016-10-09 18:41:13
views.generic.list.MultipleObjectMixin

class django.views.generic.list.MultipleObjectMixin A mixin that can be used to display a list of objects. If

2016-10-09 18:41:11
views.generic.list.MultipleObjectMixin.ordering

ordering A string or list of strings specifying the ordering to apply to the queryset. Valid values are the same

2016-10-09 18:41:13
views.generic.list.MultipleObjectMixin.get_ordering()

get_ordering() Returns a string (or iterable of strings) that defines the ordering that will be applied to the queryset

2016-10-09 18:41:12
views.generic.list.MultipleObjectMixin.paginate_by

paginate_by An integer specifying how many objects should be displayed per page. If this is given, the view will paginate objects

2016-10-09 18:41:13
views.generic.list.MultipleObjectMixin.get_allow_empty()

get_allow_empty() Return a boolean specifying whether to display the page if no objects are available. If this method returns

2016-10-09 18:41:11
views.generic.list.MultipleObjectMixin.page_kwarg

page_kwarg A string specifying the name to use for the page parameter. The view will expect this parameter to be available either

2016-10-09 18:41:13