aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/forms.html
blob: 234143be284d563772ca21cece2099cac2d97a44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% macro input(field, multiple=False) -%}
    <div class="ctrlHolder">
        {{ field.label }}
        {% if multiple == True %}
            {{ field(multiple=True) }}
        {% else %}
            {{ field }}
        {% endif %}
        {% if field.description %}
            <p class="formHint">{{ field.description }}</p>
        {% endif %}
    </div>
{% endmacro %}