Even better documentation for get_hook_templates!

Tells how you *can* use it in templates if you really like.
This commit is contained in:
Christopher Allan Webber 2013-01-30 13:27:05 -06:00
parent f097cf648c
commit ec553298ff

View File

@ -252,8 +252,16 @@ def get_hook_templates(hook_name):
... which will include all templates for you, partly using this ... which will include all templates for you, partly using this
method. method.
However, this method is exposed to templates, and if you wish, you
can iterate over templates in a template hook manually like so:
{% for template_path in get_hook_templates("media_sidebar") %}
<div class="extra_structure">
{% include template_path %"
</div>
{% endfor %}
Returns: Returns:
A list of strings representing template paths. A list of strings representing template paths.
""" """
return PluginManager().get_template_hooks(hook_name) return PluginManager().get_template_hooks(hook_name)