aboutsummaryrefslogtreecommitdiffstats
path: root/templates/list.html
blob: 083e0e8d7b38f857047e85c7adae37f373813670 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% include "header.html" %}

<table id="t01">
    <tr>
        <th>Fingerprint</td>
        <th>Balance</td>
    </tr>
    {% for user in users %}
    <tr>
        <td>{{ user.fingerprint }}</td>
        <td>{{ user.balance }}</td>
    </tr>
        {% endfor %}
</table>
{% include "footer.html" %}