aboutsummaryrefslogtreecommitdiffstats
path: root/templates/list.html
diff options
context:
space:
mode:
authorYigit Sever2021-04-22 20:15:40 +0300
committerYigit Sever2021-04-25 23:04:39 +0300
commit32b49380880aab00057b8a663b5327d6f58def3a (patch)
tree059dc128813a93679233f5489cf1a42b2ea0374d /templates/list.html
parent97b2f6c796fd2af1c338725884189685a82adc01 (diff)
downloadgradecoin-32b49380880aab00057b8a663b5327d6f58def3a.tar.gz
gradecoin-32b49380880aab00057b8a663b5327d6f58def3a.tar.bz2
gradecoin-32b49380880aab00057b8a663b5327d6f58def3a.zip
Implement nicenet
- There are bot accounts that return what you sent them - Sending a transaction generates some coin out of thin air - No more one tx per person per block limit - Unused transactions do not disappear anymore
Diffstat (limited to 'templates/list.html')
-rw-r--r--templates/list.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/list.html b/templates/list.html
index 083e0e8..0f19107 100644
--- a/templates/list.html
+++ b/templates/list.html
@@ -7,9 +7,9 @@
7 </tr> 7 </tr>
8 {% for user in users %} 8 {% for user in users %}
9 <tr> 9 <tr>
10 <td>{{ user.fingerprint }}</td> 10 <td>{{ user.fingerprint }} {% if user.is_bot %} <span title="I'm a bot!">👋🤖</span> {% endif %}</td>
11 <td>{{ user.balance }}</td> 11 <td>{{ user.balance }}</td>
12 </tr> 12 </tr>
13 {% endfor %} 13 {% endfor %}
14</table> 14</table>
15{% include "footer.html" %} 15{% include "footer.html" %}