mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
22 lines
920 B
Twig
22 lines
920 B
Twig
{# @copyright Copyright (C) 2010-2024 Combodo SAS #}
|
|
{# @license http://opensource.org/licenses/AGPL-3.0 #}
|
|
{# Dashboard Column #}
|
|
{% apply spaceless %}
|
|
{% if oUIBlock.IsEditMode() %}
|
|
{% if oUIBlock.IsLastRow() %}
|
|
{% set sCellClass = "layout_cell edit_mode layout_extension" %}
|
|
{% else %}
|
|
{% set sCellClass = "layout_cell edit_mode" %}
|
|
{% endif %}
|
|
{% else %}
|
|
{% set sCellClass = "dashboard" %}
|
|
{% endif %}
|
|
<div class="ibo-dashboard--grid-column ibo-dashboard--grid-cell {{ sCellClass }}"
|
|
data-role="ibo-dashboard--grid-cell"
|
|
data-dashboard-grid-column-index="{{ oUIBlock.GetColumnIndex() }}"
|
|
data-dashboard-grid-cell-index="{{ oUIBlock.GetCellIndex() }}">
|
|
{% for oSubBlock in oUIBlock.GetSubBlocks() %}
|
|
{{ render_block(oSubBlock, {aPage: aPage}) }}
|
|
{% endfor %}
|
|
</div>
|
|
{% endapply %} |