mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-24 11:08:45 +02:00
21 lines
651 B
Twig
21 lines
651 B
Twig
{# @copyright Copyright (C) 2010-2025 Combodo SAS #}
|
|
{# @license http://opensource.org/licenses/AGPL-3.0 #}
|
|
|
|
<script type="module">
|
|
import {session} from "/node_modules/@hotwired/turbo/dist/turbo.es2017-esm.js";
|
|
|
|
session.drive = false;
|
|
</script>
|
|
|
|
<turbo-frame id="{{ oUIBlock.GetId() }}">
|
|
{{ form_start(oUIBlock.GetFormView()) }}
|
|
{{ form_widget(oUIBlock.GetFormView()) }}
|
|
|
|
{%- block iboContentBlockContainer -%}
|
|
{% for oSubBlock in oUIBlock.GetSubBlocks() %}
|
|
{{ render_block(oSubBlock, {aPage: aPage}) }}
|
|
{% endfor %}
|
|
{%- endblock -%}
|
|
|
|
{{ form_end(oUIBlock.GetFormView()) }}
|
|
</turbo-frame> |