mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-12 23:14:18 +01:00
16 lines
758 B
Twig
16 lines
758 B
Twig
{# @copyright Copyright (C) 2010-2024 Combodo SAS #}
|
|
{# @license http://opensource.org/licenses/AGPL-3.0 #}
|
|
{# Dashboard Layout #}
|
|
{% apply spaceless %}
|
|
{% if oUIBlock.HasTitle() or oUIBlock.HasToolbar() %}
|
|
<div class="ibo-dashboard--top-bar" data-role="ibo-dashboard--top-bar">
|
|
<div class="ibo-dashboard--top-bar-title" data-role="ibo-dashboard--top-bar-title">{{ oUIBlock.GetTitle() }}</div>
|
|
{{ render_block(oUIBlock.GetToolbar(), {aPage: aPage}) }}
|
|
</div>
|
|
{% endif %}
|
|
<div class="ibo-dashboard--grid" data-role="ibo-dashboard--grid">
|
|
{% for oSubBlock in oUIBlock.GetDashboardRows() %}
|
|
{{ render_block(oSubBlock, {aPage: aPage}) }}
|
|
{% endfor %}
|
|
</div>
|
|
{% endapply %} |