diff options
| author | 0livd <github@destras.fr> | 2017-08-21 23:51:32 +0200 |
|---|---|---|
| committer | Alexis Metaireau <alexis@notmyidea.org> | 2017-08-21 23:51:32 +0200 |
| commit | 2ec4fb589fdc0fa14297263fd9357c796689dee9 (patch) | |
| tree | 33357717c20a5781cbff4b783dc3db1517dda533 /ihatemoney/templates/statistics.html | |
| parent | ec4a099f182629d86a7421af7d4899a655be684e (diff) | |
| download | ihatemoney-mirror-2ec4fb589fdc0fa14297263fd9357c796689dee9.zip ihatemoney-mirror-2ec4fb589fdc0fa14297263fd9357c796689dee9.tar.gz ihatemoney-mirror-2ec4fb589fdc0fa14297263fd9357c796689dee9.tar.bz2 | |
Add a statistics tab (#257)
Diffstat (limited to 'ihatemoney/templates/statistics.html')
| -rw-r--r-- | ihatemoney/templates/statistics.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/ihatemoney/templates/statistics.html b/ihatemoney/templates/statistics.html new file mode 100644 index 0000000..061c629 --- /dev/null +++ b/ihatemoney/templates/statistics.html @@ -0,0 +1,35 @@ +{% extends "sidebar_table_layout.html" %} + +{% block sidebar %} + <div id="table_overflow"> + <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 %}> + <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]) }} + </td> + </tr> + {% endfor %} + </table> + </div> +{% endblock %} + + +{% block content %} + <table id="bill_table" class="split_bills table table-striped"> + <thead><tr><th>{{ _("Who?") }}</th><th>{{ _("Paid") }}</th><th>{{ _("Spent") }}</th><th>{{ _("Balance") }}</th></tr></thead> + <tbody> + {% for member in members %} + <tr class="{{ loop.cycle("odd", "even") }}"> + <td>{{ member.name }}</td> + <td>{{ "%0.2f"|format(paid[member.id]) }}</td> + <td>{{ "%0.2f"|format(spent[member.id]) }}</td> + <td>{{ "%0.2f"|format(balance[member.id]) }}</td> + </tr> + {% endfor %} + </tbody> + </table> + +{% endblock %} |
