mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-02 07:34:13 +01:00
11 lines
536 B
Twig
11 lines
536 B
Twig
<div {% if oUIBlock.GetId() is defined %}id="{{ oUIBlock.GetId() }}"{% endif %} class="ibo-popover-menu" data-role="ibo-popover-menu">
|
|
{% for aSection in oUIBlock.GetSections() %}
|
|
{% if aSection.aItems|length > 0 %}
|
|
<div class="ibo-popover-menu--section" data-role="ibo-popover-menu--section">
|
|
{% for oUIBlockItem in aSection.aItems %}
|
|
{{ render_block(oUIBlockItem, {aPage: aPage}) }}
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div> |