class documentation

A mixin that can be used to render a template.

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
def get_template_names(self): (source)

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.

def render_to_response(self, context, **response_kwargs): (source)

Return a response, using the `response_class` for this view, with a template rendered with the given context. Pass response_kwargs to the constructor of the response class.

content_type = (source)

Undocumented

template_engine = (source)

Undocumented