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
commite7cd705175abb820cd4bfdb28693615ef2171597 (patch)
treef566559baf0dd3aadd4caad0f8929c26a6463309 /templates/list.html
parent764aede8aae695981ee00c1aea3e82253aca02b7 (diff)
downloadgradecoin-e7cd705175abb820cd4bfdb28693615ef2171597.tar.gz
gradecoin-e7cd705175abb820cd4bfdb28693615ef2171597.tar.bz2
gradecoin-e7cd705175abb820cd4bfdb28693615ef2171597.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" %}