N°3565 - Migrate backoffice pages to new UIBlock system : Setup

This commit is contained in:
Eric
2021-02-01 16:28:10 +01:00
parent 664dd12241
commit 2f68be14f8
16 changed files with 756 additions and 248 deletions

View File

@@ -2,7 +2,8 @@
{% endblock %}
{% block iboInput %}
<input type="{{ oUIBlock.GetType() }}" id="{{ oUIBlock.GetId() }}" name="{{ oUIBlock.GetName() }}" value="{{ oUIBlock.GetValue()|raw }}"
class="{% if oUIBlock.IsHidden() %} ibo-is-hidden{% endif %}"
{% if oUIBlock.IsChecked() %}checked="checked"{% endif %}
class="{% if oUIBlock.IsHidden() %} ibo-is-hidden{% endif %}{% if oUIBlock.GetAdditionalCSSClassesAsString() %} {{ oUIBlock.GetAdditionalCSSClassesAsString() }}{% endif %}"
{% if oUIBlock.IsChecked() %} checked="checked"{% endif %}
{% if oUIBlock.IsDisabled() %} disabled{% endif %}
>
{% endblock %}