class documentation

Undocumented

Method __init__ Undocumented
Method get_template Call self.get_template_sources() and return a Template object for the first template matching template_name. If skip is provided, ignore template origins in skip. This is used to avoid recursion during template extending.
Method get_template_sources An iterator that yields possible matching template paths for a template name.
Method reset Reset any state maintained by the loader instance (e.g. cached templates or cached loader modules).
Instance Variable engine Undocumented
def get_template(self, template_name, skip=None): (source)

Call self.get_template_sources() and return a Template object for the first template matching template_name. If skip is provided, ignore template origins in skip. This is used to avoid recursion during template extending.

def get_template_sources(self, template_name): (source)

An iterator that yields possible matching template paths for a template name.

def reset(self): (source)

Reset any state maintained by the loader instance (e.g. cached templates or cached loader modules).

Undocumented