diff options
author | Yigit Sever | 2021-04-23 01:41:18 +0300 |
---|---|---|
committer | Yigit Sever | 2021-04-23 01:41:18 +0300 |
commit | 63d08a9f120e842dcc5a34a1db6b39957c643b30 (patch) | |
tree | 74fc517fb6f6a466806aae02248c5dc7020ee9f3 /templates/list.html | |
parent | e9bf8a1a85d9366e59ec7989772d4e16490f1273 (diff) | |
download | gradecoin-63d08a9f120e842dcc5a34a1db6b39957c643b30.tar.gz gradecoin-63d08a9f120e842dcc5a34a1db6b39957c643b30.tar.bz2 gradecoin-63d08a9f120e842dcc5a34a1db6b39957c643b30.zip |
[WIP] Done, untested
Diffstat (limited to 'templates/list.html')
-rw-r--r-- | templates/list.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/list.html b/templates/list.html index 083e0e8..0f19107 100644 --- a/templates/list.html +++ b/templates/list.html | |||
@@ -7,9 +7,9 @@ | |||
7 | </tr> | 7 | </tr> |
8 | {% for user in users %} | 8 | {% for user in users %} |
9 | <tr> | 9 | <tr> |
10 | <td>{{ user.fingerprint }}</td> | 10 | <td>{{ user.fingerprint }} {% if user.is_bot %} <span title="I'm a bot!">👋🤖</span> {% endif %}</td> |
11 | <td>{{ user.balance }}</td> | 11 | <td>{{ user.balance }}</td> |
12 | </tr> | 12 | </tr> |
13 | {% endfor %} | 13 | {% endfor %} |
14 | </table> | 14 | </table> |
15 | {% include "footer.html" %} | 15 | {% include "footer.html" %} |