aboutsummaryrefslogtreecommitdiffstats
path: root/templates/list.html
blob: 0f19107f19e92d3da900f926f1a1d95ab898d41d (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 }} {% if user.is_bot %} <span title="I'm a bot!">👋🤖</span> {% endif %}</td>
        <td>{{ user.balance }}</td>
    </tr>
    {% endfor %}
</table>
{% include "footer.html" %}