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):

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):

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):

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):

Undocumented