aboutsummaryrefslogtreecommitdiff
path: root/templates/add_bill.html
diff options
context:
space:
mode:
authorAlexis Metaireau <alexis@notmyidea.org>2011-03-10 17:32:53 +0000
committerAlexis Metaireau <alexis@notmyidea.org>2011-03-10 17:32:53 +0000
commitde708ce3efec2ab70b6b77781957766ae47f9068 (patch)
tree6b2b3b43caea782d894ce9874e9b6632f14ef7ff /templates/add_bill.html
parentfc569241bea388de32b38aa907bf2e527cd5039b (diff)
downloadihatemoney-mirror-de708ce3efec2ab70b6b77781957766ae47f9068.zip
ihatemoney-mirror-de708ce3efec2ab70b6b77781957766ae47f9068.tar.gz
ihatemoney-mirror-de708ce3efec2ab70b6b77781957766ae47f9068.tar.bz2
reshape the folder structure. Add conf files
Diffstat (limited to 'templates/add_bill.html')
-rw-r--r--templates/add_bill.html20
1 files changed, 0 insertions, 20 deletions
diff --git a/templates/add_bill.html b/templates/add_bill.html
deleted file mode 100644
index 37ecfa3..0000000
--- a/templates/add_bill.html
+++ /dev/null
@@ -1,20 +0,0 @@
-{% extends "layout.html" %}
-
-{% block content %}
-<h2>Let's add a bill</h2>
-
-{% if form.errors %}
- <p class=error><strong>Your form contains errors.</strong></p>
- <ul>{% for error in form.errors %}<li>{{ error }}</li>{% endfor %}</ul>
-{% endif %}
-
- <form action="{{ url_for('add_bill') }}" method=post class="container span-24 add-bill">
- {{ form.hidden_tag() }}
-
- <p>{{ form.payer.label }}<br /> {{ form.payer }}</p>
- <p>{{ form.what.label }}<br /> {{ form.what }}</p>
- <p>{{ form.amount.label }}<br />{{ form.amount }}</p>
- <p>{{ form.payed_for.label }}<br /> {{ form.payed_for(multiple=True) }}</p>
- <p>{{ form.submit }}</p>
- </form>
-{% endblock %}