aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/bill_form.html
diff options
context:
space:
mode:
Diffstat (limited to 'budget/templates/bill_form.html')
-rw-r--r--budget/templates/bill_form.html11
1 files changed, 0 insertions, 11 deletions
diff --git a/budget/templates/bill_form.html b/budget/templates/bill_form.html
deleted file mode 100644
index 61b4004..0000000
--- a/budget/templates/bill_form.html
+++ /dev/null
@@ -1,11 +0,0 @@
-{% 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>