mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-19 23:32:17 +02:00
* No dashlet edition * Dashboard are not persisted * Unable to load a dashboard from an endpoint (refresh) * Grid library need proper npm integration
13 lines
753 B
Twig
13 lines
753 B
Twig
<button class="ibo-dashlet-entry"
|
|
data-dashlet-class="{{ oUIBlock.GetDashletClass() }}"
|
|
data-min-width="{{ oUIBlock.GetDashletMinWidth() }}"
|
|
data-min-height="{{ oUIBlock.GetDashletMinHeight() }}"
|
|
data-preferred-width="{{ oUIBlock.GetDashletPreferredWidth() }}"
|
|
data-preferred-height="{{ oUIBlock.GetDashletPreferredHeight() }}"
|
|
>
|
|
<div class="ibo-dashlet-entry--icon"><img src="{{ oUIBlock.GetDashletIcon() }}" alt="{{ oUIBlock.GetDashletLabel() }} icon"/></div>
|
|
<div class="ibo-dashlet-entry--content">
|
|
<div class="ibo-dashlet-entry--title">{{ oUIBlock.GetDashletLabel() }}</div>
|
|
<div class="ibo-dashlet-entry--description">{{ oUIBlock.GetDashletDescription() }}</div>
|
|
</div>
|
|
</button> |