aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/templates/statistics.html
diff options
context:
space:
mode:
authorJocelyn Delalande <jocelyn@crapouillou.net>2018-02-03 17:49:12 +0100
committerJocelyn Delalande <jocelyn@crapouillou.net>2018-02-06 23:59:46 +0100
commit389c7b8bcd2813d8549858265432859259942fd6 (patch)
tree62a916bf7b2720c814ed13076b315d2e124ec823 /ihatemoney/templates/statistics.html
parentcf7bd572489aad17bf60026c6618d0ff49f822a9 (diff)
downloadihatemoney-mirror-389c7b8bcd2813d8549858265432859259942fd6.zip
ihatemoney-mirror-389c7b8bcd2813d8549858265432859259942fd6.tar.gz
ihatemoney-mirror-389c7b8bcd2813d8549858265432859259942fd6.tar.bz2
Remove dead code
Diffstat (limited to 'ihatemoney/templates/statistics.html')
-rw-r--r--ihatemoney/templates/statistics.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/ihatemoney/templates/statistics.html b/ihatemoney/templates/statistics.html
index ae1c80e..ee59cb9 100644
--- a/ihatemoney/templates/statistics.html
+++ b/ihatemoney/templates/statistics.html
@@ -5,7 +5,7 @@
<table class="balance table">
{% set balance = g.project.balance %}
{% for member in g.project.members | sort(attribute='name') if member.activated or balance[member.id]|round(2) != 0 %}
- <tr id="bal-member-{{ member.id }}" action={% if member.activated %}delete{% else %}reactivate{% endif %}>
+ <tr>
<td class="balance-name">{{ member.name }}</td>
<td class="balance-value {% if balance[member.id]|round(2) > 0 %}positive{% elif balance[member.id]|round(2) < 0 %}negative{% endif %}">
{% if balance[member.id]|round(2) > 0 %}+{% endif %}{{ "%.2f" | format(balance[member.id]) }}