mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-20 07:42:17 +02:00
18 lines
661 B
Twig
18 lines
661 B
Twig
<ibo-dashboard-grid-slot
|
|
{% if oUIBlock.HasPositionX() is true %}
|
|
gs-x="{{ oUIBlock.GetPositionX() }}"
|
|
{% endif %}
|
|
{% if oUIBlock.HasPositionY() is true %}
|
|
gs-y="{{ oUIBlock.GetPositionY() }}"
|
|
{% endif %}
|
|
{% if oUIBlock.HasWidth() is true %}
|
|
gs-w="{{ oUIBlock.GetWidth() }}"
|
|
{% endif %}
|
|
{% if oUIBlock.HasHeight() is true %}
|
|
gs-h="{{ oUIBlock.GetHeight() }}"
|
|
{% endif %}
|
|
{# TODO 3.3 Handle min width / height #}
|
|
id=""
|
|
class="grid-stack-item">
|
|
{{ render_block(oUIBlock.GetDashlet(), {aPage: aPage}) }}
|
|
</ibo-dashboard-grid-slot> |