paginate_by An integer specifying how many objects should be displayed per page. If this is given, the view will paginate objects
paginate_orphans An integer specifying the number of “overflow” objects the last page can contain. This extends the paginate_by
class django.views.generic.list.MultipleObjectMixin A mixin that can be used to display a list of objects. If
ordering A string or list of strings specifying the ordering to apply to the queryset. Valid values are the same
paginator_class The paginator class to be used for pagination. By default,
get_ordering() Returns a string (or iterable of strings) that defines the ordering that will be applied to the 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
get_template_names() Returns a list of candidate template names. Returns the following list:
model The model that this view will display data for. Specifying model = Foo is effectively the same as specifying
get_allow_empty() Return a boolean specifying whether to display the page if no objects are available. If this method returns
Page 1 of 3