forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-11-30 16:37:49 +02:00
parent 452cd69152
commit b1c0ad62dd
1 changed files with 2 additions and 2 deletions

View File

@ -10,13 +10,13 @@
<thead class="bg-primary text-white"> <thead class="bg-primary text-white">
<tr> <tr>
<th style="font-weight:bold;">Name</th> <th style="font-weight:bold;">Name</th>
<th style="font-weight:bold; text-align:right;">Coins</th> <th style="font-weight:bold; text-align:right;">Score</th>
</tr> </tr>
</thead> </thead>
{% for user in admins %} {% for user in admins %}
<tr> <tr>
<td><a style="color:#{{user.namecolor}}; font-weight:bold;" href="/@{{user.username}}"><img loading="lazy" src="/uid/{{user.id}}/pic" class="pp20"><span {% if user.patron %}class="patron" style="background-color:#{{user.namecolor}};"{% endif %}>{{user.username}}</span></a></td> <td><a style="color:#{{user.namecolor}}; font-weight:bold;" href="/@{{user.username}}"><img loading="lazy" src="/uid/{{user.id}}/pic" class="pp20"><span {% if user.patron %}class="patron" style="background-color:#{{user.namecolor}};"{% endif %}>{{user.username}}</span></a></td>
<td style="font-weight:bold; text-align:right;">{{user.coins}}</td> <td style="font-weight:bold; text-align:right;">{{user.truecoins}}</td>
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>