diff options
Diffstat (limited to 'templates/list.html')
-rw-r--r-- | templates/list.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/list.html b/templates/list.html new file mode 100644 index 0000000..e63c6be --- /dev/null +++ b/templates/list.html | |||
@@ -0,0 +1,15 @@ | |||
1 | {% include "header.html" %} | ||
2 | |||
3 | <table id="t01"> | ||
4 | <tr> | ||
5 | <th>Fingerprint</td> | ||
6 | <th>Balance</td> | ||
7 | </tr> | ||
8 | {% for user in users %} | ||
9 | <tr> | ||
10 | <td>{{ user.fingerprint }}</td> | ||
11 | <td>{{ user.balance }}</td> | ||
12 | <?tr> | ||
13 | {% endfor %} | ||
14 | </table> | ||
15 | {% include "footer.html" %} | ||