mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-27 06:04:12 +01:00
8 lines
445 B
Twig
8 lines
445 B
Twig
{% if oUIBlock.GetSubBlocks() %}
|
|
<fieldset class="ibo-fieldset{% if oUIBlock.IsHidden() %} ibo-is-hidden{% endif %} {{ oUIBlock.GetAdditionalCSSClassesAsString() }}" 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 %} |