diff options
Diffstat (limited to 'budget/templates/bill_form.html')
| -rw-r--r-- | budget/templates/bill_form.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/budget/templates/bill_form.html b/budget/templates/bill_form.html new file mode 100644 index 0000000..61b4004 --- /dev/null +++ b/budget/templates/bill_form.html @@ -0,0 +1,11 @@ +{% import "forms.html" as forms %} +<div class="uniForm"> +<form action="{{ url_for('add_bill', project_id=project.id) }}" method="post" class=uniForm"> + {{ form.hidden_tag() }} + {{ forms.input(form.what) }} + {{ forms.input(form.payer) }} + {{ forms.input(form.amount) }} + {{ forms.input(form.payed_for, multiple=True) }} + <p>{{ form.submit }}</p> +</form> +</div> |
