mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
14 lines
374 B
HTML
14 lines
374 B
HTML
|
{% 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 %}
|