aboutsummaryrefslogtreecommitdiffstats
path: root/templates/list.html
diff options
context:
space:
mode:
authorYigit Sever2021-04-16 16:39:23 +0300
committerYigit Sever2021-04-16 16:39:23 +0300
commit204dbc1f887f42e4a5ea734895ef36c5c434890f (patch)
tree5fc3f838de25513c8f0b0eaf068a0b24b6f89619 /templates/list.html
parenta4667e5b15273bea2e5eb2f1b417b35e0de12e5e (diff)
downloadgradecoin-204dbc1f887f42e4a5ea734895ef36c5c434890f.tar.gz
gradecoin-204dbc1f887f42e4a5ea734895ef36c5c434890f.tar.bz2
gradecoin-204dbc1f887f42e4a5ea734895ef36c5c434890f.zip
Add existing user get support
Diffstat (limited to 'templates/list.html')
-rw-r--r--templates/list.html15
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" %}