blob: 405c053dae9d0841eddd0a5057165016d48a0ee7 (
plain)
1
2
3
4
5
6
7
|
{# input: obj which should have dynSectionId and relPath attributes #}
{% if config.HTML_DYNAMIC_SECTIONS %}
<div id="dynsection-{{ obj.dynSectionId }}" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;"><img
id="dynsection-{{ obj.dynSectionId }}-trigger" src="{{ obj.relPath }}closed.png" alt="+"/>
{% else %}
<div class="dynheader">
{% endif %}
|