mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-25 13:24:12 +01:00
Default modal JS Implementation: Add title option Add buttons option Change template cloning Confirmation Modal: Add implementation Do not show again functionality Web Page: Add blocks array with twig loop insertion
31 lines
1.7 KiB
Twig
31 lines
1.7 KiB
Twig
{% for oSubBlock in oUIBlock.GetSubBlocks() %}{{ render_block(oSubBlock, {aPage: aPage}) }}{% endfor %}
|
|
|
|
{% if oUIBlock.GetOptions("select_mode") is not empty %}
|
|
<input type="hidden" name="selectionMode" value="{{ oUIBlock.GetOption("selectionMode") }}">
|
|
<input type="hidden" name="selectionCount" value="0">
|
|
<div data-target="ibo-datatable--selection"></div>
|
|
{% if oUIBlock.GetAjaxData("extra_params") is not empty %}
|
|
<input type="hidden" name="extra_params" value="{{ oUIBlock.GetAjaxData("extra_params")|raw|json_encode }}">
|
|
{% endif %}
|
|
{% if oUIBlock.GetAjaxData("filter") is not empty %}
|
|
<input type="hidden" name="filter" value="{{ oUIBlock.GetAjaxData("filter")|raw }}">
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
<table id="{{ oUIBlock.GetId() }}" width="100%" class="{{ oUIBlock.GetBlocksInheritanceCSSClassesAsString() }} {{ oUIBlock.GetAdditionalCSSClassesAsString() }} {% if oUIBlock.IsHidden() %}ibo-is-hidden{% endif %}" data-role="ibo-datatable" data-status="loading">
|
|
<thead>
|
|
{% if oUIBlock.GetOption("select_mode") is not empty %}
|
|
<th></th>
|
|
{% endif %}
|
|
{% for aColumn in oUIBlock.GetDisplayColumns() %}
|
|
<th class="ibo-datatable-header" {% if aColumn["description"] is not empty %}title="{{ aColumn["description"] }}"{% endif %}>{{ aColumn["attribute_label"] }} </th>
|
|
{% endfor %}
|
|
{% if oUIBlock.HasRowActions() %}
|
|
<th class="ibo-datatable-header" title="{{ 'UI:Datatables:Column:RowActions:Description'|dict_s }}">{{ 'UI:Datatables:Column:RowActions:Label'|dict_s }} </th>
|
|
{% endif %}
|
|
</thead>
|
|
</table>
|
|
|
|
{% if oUIBlock.HasRowActions() %}
|
|
{{ render_block(oUIBlock.GetRowActionsTemplate()) }}
|
|
{% endif %} |