aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/templates/statistics.html
blob: 1b07a33f3853f2d3e4aff2af1400db73fe506759 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends "sidebar_table_layout.html" %}

{% block sidebar %}
    <div id="table_overflow">
    <table class="balance table">
    {% for stat in members_stats| sort(attribute='member.name') %}
    <tr>
        <td class="balance-name">{{ stat.member.name }}</td>
        <td class="balance-value {% if stat.balance|round(2) > 0 %}positive{% elif stat.balance|round(2) < 0 %}negative{% endif %}">
            {% if stat.balance|round(2) > 0 %}+{% endif %}{{ "%.2f" | format(stat.balance) }}
        </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 stat in members_stats %}
    <tr>
        <td>{{ stat.member.name }}</td>
        <td>{{ "%0.2f"|format(stat.paid) }}</td>
        <td>{{ "%0.2f"|format(stat.spent) }}</td>
        <td>{{ "%0.2f"|format(stat.balance) }}</td>
    </tr>
    {% endfor %}
    </tbody>
    </table>

{% endblock %}