mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-25 13:24:12 +01:00
11 lines
373 B
Twig
11 lines
373 B
Twig
{% block iboInputLabel %}
|
|
{% if oUIBlock.IsLabelBefore() %}
|
|
<label for="{{ oUIBlock.GetId() }}">{{ oUIBlock.GetLabel() |raw }}</label>
|
|
{{ render_block(oUIBlock.GetInput()) }}
|
|
{% else %}
|
|
{{ render_block(oUIBlock.GetInput()) }}
|
|
<label for="{{ oUIBlock.GetId() }}">{{ oUIBlock.GetLabel() |raw }}</label>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|