class documentation

class TemplateView(TemplateResponseMixin, ContextMixin, View): (source)

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 (via TemplateResponseMixin):

Method get_context_data Undocumented
Class Variable extra_context Undocumented

Inherited from View (via TemplateResponseMixin, ContextMixin):

Method __init__ Constructor. Called in the URLconf; can contain helpful extra keyword arguments, and other things.
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
Property view_is_async Undocumented
Method _allowed_methods Undocumented
def get(self, request, *args, **kwargs): (source)

Undocumented