mirror of
https://github.com/Combodo/iTop.git
synced 2026-07-18 12:46:38 +02:00
12 lines
516 B
Twig
12 lines
516 B
Twig
<button id="{{ oUIBlock.GetId() }}"
|
|
class="ibo-button ibo-is-{{ oUIBlock.GetActionType() }} ibo-is-{{ oUIBlock.GetColor() }}"
|
|
type="{{ oUIBlock.GetType() }}"
|
|
name="{{ oUIBlock.GetName() }}"
|
|
value="{{ oUIBlock.GetValue() }}"
|
|
{% if oUIBlock.IsDisabled() is same as(true) %} disabled {% endif %}
|
|
>
|
|
{% if oUIBlock.GetIconClass() is not empty %}
|
|
<span class="ibo-button-icon {{ oUIBlock.GetIconClass() }}"></span>
|
|
{% endif %}
|
|
{{ oUIBlock.GetLabel() }}
|
|
</button> |