get_ordering() Returns a string (or iterable of strings) that defines the ordering that will be applied to the queryset
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
paginator_class The paginator class to be used for pagination. By default,
class django.views.generic.list.MultipleObjectMixin A mixin that can be used to display a list of objects. If
get_template_names() Returns a list of candidate template names. Returns the following list:
get_queryset() Get the list of items for this view. This must be an iterable and may be a queryset (in which queryset-specific
ordering A string or list of strings specifying the ordering to apply to the queryset. Valid values are the same
model The model that this view will display data for. Specifying model = Foo is effectively the same as specifying
page_kwarg A string specifying the name to use for the page parameter. The view will expect this parameter to be available either
Page 1 of 3