mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-26 03:58:45 +02:00
15 lines
531 B
Twig
15 lines
531 B
Twig
{% extends 'base/components/popover-menu/item/layout.html.twig' %}
|
|
|
|
{% block iboPopoverMenuItem %}
|
|
<a class="ibo-popover-menu--item" data-role="ibo-popover-menu--item" href="{{ oUIBlock.GetUrl() }}" target="{{ oUIBlock.GetTarget() }}"
|
|
{% if oUIBlock.HasDataAttributes() %}
|
|
{% for sName, sValue in oUIBlock.GetDataAttributes() %}
|
|
data-{{ sName }}="{{ sValue }}"
|
|
{% endfor %}
|
|
{% endif %}
|
|
>
|
|
{{ oUIBlock.GetLabel() }}
|
|
</a>
|
|
{% endblock %}
|
|
|