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