mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-24 02:58:43 +02:00
N°3746 - Migrate modal to new UIBlock system
This commit is contained in:
@@ -1,8 +1,14 @@
|
||||
{% block iboInputLabel %}
|
||||
{% endblock %}
|
||||
{% block iboInput %}
|
||||
<textarea
|
||||
id="{{ oUIBlock.GetId() }}" name="{{ oUIBlock.GetName() }}"
|
||||
cols="{{ oUIBlock.GetCols() }}" rows="{{ oUIBlock.GetRows() }}"
|
||||
<textarea
|
||||
id="{{ oUIBlock.GetId() }}" name="{{ oUIBlock.GetName() }}"
|
||||
cols="{{ oUIBlock.GetCols() }}" rows="{{ oUIBlock.GetRows() }}"
|
||||
{% if oUIBlock.GetDataAttributes() %}
|
||||
{% for sName, sValue in oUIBlock.GetDataAttributes() %}
|
||||
data-{{ sName }}="{{ sValue }}"
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% if oUIBlock.GetPlaceHolder() %} placeholder="{{ oUIBlock.GetPlaceHolder() }}" {% endif %}
|
||||
>{{ oUIBlock.GetValue()|raw }}</textarea>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user