Home | History | Annotate | Download | only in jinja2

Lines Matching refs:template

59     iterator over all the hardcoded template extensions, inclusions and
70 to rebuild parts of the website after a layout template has changed.
74 if not isinstance(node.template, nodes.Const):
76 if isinstance(node.template, (nodes.Tuple, nodes.List)):
77 for template_name in node.template.items:
90 # constant is a basestring, direct template name
91 if isinstance(node.template.value, string_types):
92 yield node.template.value
97 isinstance(node.template.value, (tuple, list)):
98 for template_name in node.template.value: