mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-21 09:38:48 +02:00
11 lines
529 B
Twig
11 lines
529 B
Twig
<form method="post" enctype="multipart/form-data" id="{{ oUIBlock.GetId() }}"
|
|
{% if oUIBlock.GetOnSubmitJsCode() %}onSubmit="{{ oUIBlock.GetOnSubmitJsCode() }}"{% endif %}
|
|
{% if oUIBlock.GetAction() %}action="{{ oUIBlock.GetAction() }}"{% endif %}>
|
|
{% apply spaceless %}
|
|
{% block iboContentBlockContainer %}
|
|
{% for oSubBlock in oUIBlock.GetSubBlocks() %}
|
|
{{ render_block(oSubBlock, {aPage: aPage}) }}
|
|
{% endfor %}
|
|
{% endblock %}
|
|
{% endapply %}
|
|
</form> |