mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-24 02:58:43 +02:00
22 lines
658 B
Twig
22 lines
658 B
Twig
{# @copyright Copyright (C) 2010-2025 Combodo SAS #}
|
|
{# @license http://opensource.org/licenses/AGPL-3.0 #}
|
|
|
|
|
|
|
|
<turbo-frame id="{{ oUIBlock.GetId() }}">
|
|
{% if oUIBlock.GetAction() %}
|
|
{{ form_start(oUIBlock.GetFormView(), {action: oUIBlock.GetAction()}) }}
|
|
{% else %}
|
|
{{ form_start(oUIBlock.GetFormView()) }}
|
|
{% endif %}
|
|
{{ form_widget(oUIBlock.GetFormView()) }}
|
|
|
|
{%- block iboContentBlockContainer -%}
|
|
{% for oSubBlock in oUIBlock.GetSubBlocks() %}
|
|
{{ render_block(oSubBlock, {aPage: aPage}) }}
|
|
{% endfor %}
|
|
{%- endblock -%}
|
|
|
|
|
|
{{ form_end(oUIBlock.GetFormView()) }}
|
|
</turbo-frame> |