diff --git a/budget/templates/forms.html b/budget/templates/forms.html index 2904e0d5..cc5d018b 100644 --- a/budget/templates/forms.html +++ b/budget/templates/forms.html @@ -1,13 +1,14 @@ -{% macro input(field, multiple=False, class=None) -%} +{% macro input(field, multiple=False) -%} + {# Additional arguments will be added as input properties (e.g. class="yourclass") #}
{{ field.description }}
@@ -80,7 +81,7 @@ {{ input(form.date, class="datepicker") }} {{ input(form.what) }} {{ input(form.payer) }} - {{ input(form.amount) }} + {{ input(form.amount, autocomplete="off") }} {{ input(form.payed_for) }}