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
373 B
13 lines
373 B
{% if inputs %}
|
|
<div class="form-group">
|
|
{% if label_class %}
|
|
<div class="aab controls {{ label_class }}"></div>
|
|
{% endif %}
|
|
|
|
<div class="controls {{ field_class }}">
|
|
{% for input in inputs %}
|
|
{% include "bootstrap3/layout/baseinput.html" %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|