{% 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" %}