module documentation

Undocumented

Function get_template Load and return a template for the given name.
Function render_to_string Load a template and render it with a context. Return a string.
Function select_template Load and return a template for one of the given names.
Function _engine_list Undocumented
def get_template(template_name, using=None): (source)

Load and return a template for the given name. Raise TemplateDoesNotExist if no such template exists.

def render_to_string(template_name, context=None, request=None, using=None): (source)

Load a template and render it with a context. Return a string. template_name may be a string or a list of strings.

def select_template(template_name_list, using=None): (source)

Load and return a template for one of the given names. Try names in order and return the first template found. Raise TemplateDoesNotExist if no such template exists.

def _engine_list(using=None): (source)

Undocumented