views.generic.list.MultipleObjectMixin.get_context_data()

get_context_data(**kwargs) Returns context data for displaying the list of objects.

2016-10-09 18:41:12
views.generic.list.MultipleObjectMixin.paginate_queryset()

paginate_queryset(queryset, page_size) Returns a 4-tuple containing (paginator, page, object_list

2016-10-09 18:41:13
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
views.generic.list.MultipleObjectMixin.context_object_name

context_object_name Designates the name of the variable to use in the context.

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

class django.views.generic.list.MultipleObjectTemplateResponseMixin A mixin class that performs template-based response rendering

2016-10-09 18:41:14
views.generic.list.MultipleObjectMixin.get_paginate_by()

get_paginate_by(queryset) Returns the number of items to paginate by, or None for no pagination. By default this

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

allow_empty A boolean specifying whether to display the page if no objects are available. If this is False and

2016-10-09 18:41:11
views.generic.list.MultipleObjectTemplateResponseMixin.template_name_suffix

template_name_suffix The suffix to append to the auto-generated candidate template name. Default suffix is _list

2016-10-09 18:41:14
views.generic.list.MultipleObjectMixin.get_context_object_name()

get_context_object_name(object_list) Return the context variable name that will be used to contain the list of data that this

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

queryset A QuerySet that represents the objects. If provided, the value of queryset supersedes the

2016-10-09 18:41:14