class documentation

Undocumented

Method __init__ Initialize the template engine.
Method from_string Create and return a template for the given source code.
Method get_template Load and return a template for the given name.
Class Variable app_dirname Undocumented
Instance Variable context_processors Undocumented
Instance Variable env Undocumented
Property template_context_processors Undocumented

Inherited from BaseEngine:

Method iter_template_filenames Iterate over candidate files for template_name.
Instance Variable app_dirs Undocumented
Instance Variable dirs Undocumented
Instance Variable name Undocumented
Property template_dirs Return a list of directories to search for templates.
def __init__(self, params): (source)

Initialize the template engine. `params` is a dict of configuration settings.

def from_string(self, template_code): (source)

Create and return a template for the given source code. This method is optional.

def get_template(self, template_name): (source)

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

context_processors = (source)

Undocumented

Undocumented

@cached_property
template_context_processors = (source)

Undocumented