You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
410 B
13 lines
410 B
{% if inputs %}
|
|
<div class="form-group{% if 'form-horizontal' in form_class %} row{% endif %}">
|
|
{% if label_class %}
|
|
<div class="aab {{ label_class }}"></div>
|
|
{% endif %}
|
|
|
|
<div class="{{ field_class }}">
|
|
{% for input in inputs %}
|
|
{% include "bootstrap4/layout/baseinput.html" %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|