mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-26 05:44:12 +01:00
22 lines
851 B
Twig
22 lines
851 B
Twig
<form method="post" enctype="multipart/form-data" id="{{ oUIBlock.GetId() }}"
|
|
class="{% if oUIBlock.IsHidden() %} ibo-is-hidden{% endif %}"
|
|
{% if oUIBlock.GetOnSubmitJsCode() %}
|
|
onSubmit="{{ oUIBlock.GetOnSubmitJsCode() }}"
|
|
{% endif %}
|
|
{% if oUIBlock.GetAction() %}
|
|
action="{{ oUIBlock.GetAction() }}"
|
|
{% endif %}
|
|
{% if oUIBlock.GetDataAttributes() %}
|
|
{% for sName, sValue in oUIBlock.GetDataAttributes() %}
|
|
data-{{ sName }}="{{ sValue }}"
|
|
{% endfor %}
|
|
{% endif %}
|
|
>
|
|
{% apply spaceless %}
|
|
{% block iboContentBlockContainer %}
|
|
{% for oSubBlock in oUIBlock.GetSubBlocks() %}
|
|
{{ render_block(oSubBlock, {aPage: aPage}) }}
|
|
{% endfor %}
|
|
{% endblock %}
|
|
{% endapply %}
|
|
</form> |