aboutsummaryrefslogtreecommitdiffstats
path: root/templates/list.html
diff options
context:
space:
mode:
authoryigit sever2021-04-16 13:40:17 +0000
committeryigit sever2021-04-16 13:40:17 +0000
commitc6b90ff7abe2122fbac8f9e1066bd8cecbf135cd (patch)
tree9835fb758c15d1ed36b95b950e23bf883da87738 /templates/list.html
parent9a9bc6522810d49a46f6762cca68daf81ba60390 (diff)
parente7cd705175abb820cd4bfdb28693615ef2171597 (diff)
downloadgradecoin-c6b90ff7abe2122fbac8f9e1066bd8cecbf135cd.tar.gz
gradecoin-c6b90ff7abe2122fbac8f9e1066bd8cecbf135cd.tar.bz2
gradecoin-c6b90ff7abe2122fbac8f9e1066bd8cecbf135cd.zip
Merge pull request 'Add existing user get support' (#1) from usershow into main
Reviewed-on: https://git.yigitsever.com/yigit/gradecoin/pulls/1
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" %}