Lines Matching refs:template
63 iterator over all the hardcoded template extensions, inclusions and
74 to rebuild parts of the website after a layout template has changed.
79 template: nodes.Expr = node.template # type: ignore
81 if not isinstance(template, nodes.Const):
83 if isinstance(template, (nodes.Tuple, nodes.List)):
84 for template_name in template.items:
97 # constant is a basestring, direct template name
98 if isinstance(template.value, str):
99 yield template.value
104 template.value, (tuple, list)
106 for template_name in template.value: