File: inputs.html

package info (click to toggle)
python-crispy-bootstrap3 2024.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 500 kB
  • sloc: python: 1,815; makefile: 3
file content (13 lines) | stat: -rw-r--r-- 373 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% 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 %}