aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/edit_member.html
diff options
context:
space:
mode:
Diffstat (limited to 'budget/templates/edit_member.html')
-rw-r--r--budget/templates/edit_member.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/budget/templates/edit_member.html b/budget/templates/edit_member.html
new file mode 100644
index 0000000..5f097f9
--- /dev/null
+++ b/budget/templates/edit_member.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.edit_member(form, edit) }}
+</form>
+{% endblock %}