mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-29 05:28:44 +02:00
18 lines
981 B
Twig
18 lines
981 B
Twig
<div id="{{ oUIBlock.GetId() }}" class="ibo-activity-new-entry-form ibo-is-closed" data-role="ibo-activity-new-entry-form">
|
|
<div class="ibo-activity-new-entry-form--text-input" data-role="ibo-activity-new-entry-form--text-input">
|
|
{{ render_block(oUIBlock.GetFormTextInput(), {aPage: aPage}) }}
|
|
</div>
|
|
<div class="ibo-activity-new-entry-form--actions">
|
|
<div class="ibo-activity-new-entry-form--action-buttons--left-actions">
|
|
{% for TextInputActionButton in oUIBlock.GetTextInputActionButtons() %}
|
|
{{ render_block(TextInputActionButton, {aPage: aPage}) }}
|
|
{% endfor %}
|
|
</div>
|
|
<div class="ibo-activity-new-entry-form--action-buttons--right-actions" data-role="ibo-activity-new-entry-form--action-buttons--right-actions">
|
|
{% for FormActionButton in oUIBlock.GetFormActionButtons() %}
|
|
{{ render_block(FormActionButton, {aPage: aPage}) }}
|
|
{% endfor %}
|
|
{{ render_block(oUIBlock.GetCaseLogSelectionPopOverMenu(), {aPage: aPage}) }}
|
|
</div>
|
|
</div>
|
|
</div> |