rDrama/files/templates/loggedin.html

22 lines
424 B
HTML
Raw Normal View History

2022-05-25 21:25:23 +00:00
{% extends "settings2.html" %}
{% block content %}
<div class="overflow-x-auto"><table class="table table-striped mb-5">
<thead class="bg-primary text-white">
<tr>
<th>#</th>
<th>Name</th>
<th>Truescore</th>
</tr>
</thead>
{% for user in users %}
<tr>
<td>{{loop.index}}</td>
2022-09-05 03:01:06 +00:00
<td>{% include "user_in_table.html" %}</td>
2022-09-10 06:43:38 +00:00
<td>{{"{:,}".format(user.truecoins)}}</td>
2022-05-25 21:25:23 +00:00
</tr>
{% endfor %}
</table>
{% endblock %}