Files
iTop/templates/base/layouts/dashlet-panel/layout.html.twig
Stephen Abello a713e1b56e N°8641 - Dashboard editor front-end first commit for Form SDK integration.
* No dashlet edition
* Dashboard are not persisted
* Unable to load a dashboard from an endpoint (refresh)
* Grid library need proper npm integration
2026-01-08 10:17:30 +01:00

11 lines
403 B
Twig

<div id={{ oUIBlock.GetId() }} class="ibo-dashlet-panel">
<div class ="ibo-dashlet-panel--title">
Add a dashlet
</div>
<div class="ibo-dashlet-panel--entries">
{% for oSubBlock in oUIBlock.GetSubBlocks() %}
{{ render_block(oSubBlock, {aPage: aPage}) }}
{% endfor %}
</div>
<div class="ibo-dashlet-panel--form-container ibo-is-hidden"></div>
</div>