aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/templates/add_bill.html
diff options
context:
space:
mode:
Diffstat (limited to 'ihatemoney/templates/add_bill.html')
-rw-r--r--ihatemoney/templates/add_bill.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/ihatemoney/templates/add_bill.html b/ihatemoney/templates/add_bill.html
new file mode 100644
index 0000000..595f363
--- /dev/null
+++ b/ihatemoney/templates/add_bill.html
@@ -0,0 +1,17 @@
+{% extends "layout.html" %}
+
+{% block js %}
+ $('#cancel-form').click(function(){location.href={{ url_for(".list_bills") }};});
+{% endblock %}
+
+
+{% block top_menu %}
+<a href="{{ url_for(".list_bills") }}">{{ _("Back to the list") }}</a>
+{% endblock %}
+
+{% block content %}
+
+<form class="form-horizontal" method="post">
+ {{ forms.add_bill(form, edit) }}
+</form>
+{% endblock %}