aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/list_bills.html
diff options
context:
space:
mode:
authorJocelyn Delande <jocelyn@crapouillou.net>2015-08-22 10:49:35 +0200
committerJocelyn Delande <jocelyn@crapouillou.net>2016-06-15 10:20:37 +0200
commit64c2cd56dfb58ef78936d39b2e71640cd631653e (patch)
treed321075a19c9121828798fd5a12b9e43c7586442 /budget/templates/list_bills.html
parent1147f2ece8eaa868f5f0b89da583d03560ec23ee (diff)
downloadihatemoney-mirror-64c2cd56dfb58ef78936d39b2e71640cd631653e.zip
ihatemoney-mirror-64c2cd56dfb58ef78936d39b2e71640cd631653e.tar.gz
ihatemoney-mirror-64c2cd56dfb58ef78936d39b2e71640cd631653e.tar.bz2
display an edit button on members list
Diffstat (limited to 'budget/templates/list_bills.html')
-rw-r--r--budget/templates/list_bills.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/budget/templates/list_bills.html b/budget/templates/list_bills.html
index 2702d99..9bad344 100644
--- a/budget/templates/list_bills.html
+++ b/budget/templates/list_bills.html
@@ -71,7 +71,10 @@
{% if member.activated %}
<td>
<form class="action delete" action="{{ url_for(".remove_member", member_id=member.id) }}" method="POST">
- <button type="submit">{{ _("delete") }}</button></form></td>
+ <button type="submit">{{ _("delete") }}</button></form>
+ <form class="action edit" action="{{ url_for(".edit_member", member_id=member.id) }}" method="POST">
+ <button type="submit">{{ _("edit") }}</button></form>
+ </td>
{% else %}
<td>
<form class="action reactivate" action="{{ url_for(".reactivate", member_id=member.id) }}" method="POST">