class documentation

class BaseAdminDocsView(TemplateView):

Known subclasses: django.contrib.admindocs.views.BookmarkletsView, django.contrib.admindocs.views.ModelDetailView, django.contrib.admindocs.views.ModelIndexView, django.contrib.admindocs.views.TemplateDetailView, django.contrib.admindocs.views.TemplateFilterIndexView, django.contrib.admindocs.views.TemplateTagIndexView, django.contrib.admindocs.views.ViewDetailView, django.contrib.admindocs.views.ViewIndexView

View In Hierarchy

Base view for admindocs views.
Method dispatch Undocumented
Method get​_context​_data Undocumented
Instance Variable template​_name Undocumented

Inherited from TemplateView:

Method get Undocumented

Inherited from TemplateResponseMixin (via TemplateView):

Method get​_template​_names Return a list of template names to be used for the request. Must return a list. May not be called if render_to_response() is overridden.
Method render​_to​_response Return a response, using the response_class for this view, with a template rendered with the given context.
Class Variable content​_type Undocumented
Class Variable template​_engine Undocumented

Inherited from ContextMixin (via TemplateView):

Class Variable extra​_context Undocumented

Inherited from View (via TemplateView):

Method __init__ Constructor. Called in the URLconf; can contain helpful extra keyword arguments, and other things.
Method ​_allowed​_methods Undocumented
Method as​_view Main entry point for a request-response process.
Method http​_method​_not​_allowed Undocumented
Method options Handle responding to requests for the OPTIONS HTTP verb.
Method setup Initialize attributes shared by all view methods.
Class Variable http​_method​_names Undocumented
Instance Variable args Undocumented
Instance Variable head Undocumented
Instance Variable kwargs Undocumented
Instance Variable request Undocumented
@method_decorator(staff_member_required)
def dispatch(self, request, *args, **kwargs):

Undocumented