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
commite81b6af56436be291adf31f770c6ef7e8ddfdbd0 (patch)
treeb1d02cfccf1f3004f5a9e6bcc68dfef180c08150 /templates/list.html
parentc28b07a494ea39f91283601251061366a9f5e93e (diff)
parent204dbc1f887f42e4a5ea734895ef36c5c434890f (diff)
downloadgradecoin-e81b6af56436be291adf31f770c6ef7e8ddfdbd0.tar.gz
gradecoin-e81b6af56436be291adf31f770c6ef7e8ddfdbd0.tar.bz2
gradecoin-e81b6af56436be291adf31f770c6ef7e8ddfdbd0.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" %}