fds
This commit is contained in:
parent
5df4bcccde
commit
febf7c98fb
1 changed files with 8 additions and 2 deletions
|
@ -21,10 +21,16 @@
|
||||||
|
|
||||||
<h2>Upvotes</h2>
|
<h2>Upvotes</h2>
|
||||||
<div class="overflow-x-auto"><table class="table table-striped mb-5">
|
<div class="overflow-x-auto"><table class="table table-striped mb-5">
|
||||||
<thead class="bg-primary text-white"><tr><th>User</th></tr></thead>
|
<thead class="bg-primary text-white"><tr>
|
||||||
|
<th>User</th>
|
||||||
|
<th>User truescore</th>
|
||||||
|
</tr></thead>
|
||||||
|
|
||||||
{% for vote in ups %}
|
{% for vote in ups %}
|
||||||
<tr><td><a style="color:#{{vote.user.namecolor}};font-weight:bold" href="/@{{vote.user.username}}"><img loading="lazy" src="{{vote.user.profile_url}}" class="pp20"><span {% if vote.user.patron %}class="patron" style="background-color:#{{vote.user.namecolor}}"{% endif %}>{{vote.user.username}}</span></a></td></tr>
|
<tr>
|
||||||
|
<td><a style="color:#{{vote.user.namecolor}};font-weight:bold" href="/@{{vote.user.username}}"><img loading="lazy" src="{{vote.user.profile_url}}" class="pp20"><span {% if vote.user.patron %}class="patron" style="background-color:#{{vote.user.namecolor}}"{% endif %}>{{vote.user.username}}</span></a></td>
|
||||||
|
<td>{{vote.user.truecoins}}
|
||||||
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue