class documentation

class TemplateView(TemplateResponseMixin, ContextMixin, View):

Known subclasses: django.contrib.admindocs.views.BaseAdminDocsView

View In Hierarchy

Render a template. Pass keyword arguments from the URLconf to the context.
Method get Undocumented

Inherited from TemplateResponseMixin:

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
Class Variable template​_name Undocumented

Inherited from ContextMixin:

Method get​_context​_data Undocumented
Class Variable extra​_context Undocumented

Inherited from View:

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 dispatch Undocumented
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
def get(self, request, *args, **kwargs):

Undocumented