class django.views.generic.list.BaseListView
A base view for displaying a list of objects. It is not intended to be used directly, but rather as a parent class of the django.views.generic.list.ListView
or other views representing lists of objects.
Ancestors (MRO)
This view inherits methods and attributes from the following views:
Methods
-
get(request, *args, **kwargs)
-
Adds
object_list
to the context. Ifallow_empty
is True then display an empty list. Ifallow_empty
is False then raise a 404 error.
Please login to continue.