mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-04 00:24:14 +01:00
8 lines
470 B
Twig
8 lines
470 B
Twig
{% if oUIBlock.GetSubBlocks() %}
|
|
<fieldset class="ibo-fieldset {% if oUIBlock.IsHidden() %}ibo-is-hidden{% endif %} {{ oUIBlock.GetAdditionalCSSClassesAsString() }}" data-role="ibo-fieldset" id="{{ oUIBlock.GetId() }}">
|
|
<legend class="ibo-fieldset-legend">{{ oUIBlock.GetLegend()| raw }}</legend>
|
|
{% for oSubBlock in oUIBlock.GetSubBlocks() %}
|
|
{{ render_block(oSubBlock, {aPage: aPage}) }}
|
|
{% endfor %}
|
|
</fieldset>
|
|
{% endif %} |