rDrama/files/templates/leaderboard.html

484 lines
17 KiB
HTML
Raw Normal View History

2021-12-14 22:48:37 +00:00
{% extends "settings2.html" %}
2021-10-15 14:08:27 +00:00
{% block pagetitle %}Leaderboard{% endblock %}
2021-11-24 21:01:14 +00:00
{% block content %}
2021-12-14 22:48:37 +00:00
<pre class="d-none d-md-inline-block"></pre>
2022-01-19 12:44:05 +00:00
<h5 style="font-weight:bold;text-align: center">Top 25 by coins</h5>
2021-12-14 22:48:37 +00:00
<pre></pre>
2022-01-03 10:59:29 +00:00
<div class="overflow-x-auto"><table class="table table-striped mb-5">
2021-12-14 22:48:37 +00:00
<thead class="bg-primary text-white">
<tr>
2022-02-24 12:03:28 +00:00
<th>#</th>
<th>Name</th>
<th>Coins</th>
2021-12-14 22:48:37 +00:00
</tr>
</thead>
{% for user in users1 %}
2022-01-22 15:38:40 +00:00
<tr {% if v.id == user.id %}class="self"{% endif %}>
2022-02-24 12:03:28 +00:00
<td>{{loop.index}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{user.namecolor}};font-weight:bold" href="/@{{user.username}}"><img loading="lazy" src="{{user.profile_url}}" class="pp20"><span {% if user.patron %}class="patron" style="background-color:#{{user.namecolor}}"{% endif %}>{{user.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{user.coins}}</td>
2021-12-14 22:48:37 +00:00
</tr>
{% endfor %}
2022-01-18 11:52:38 +00:00
{% if pos1 > 25 %}
2022-01-18 11:57:29 +00:00
<tr style="border-top:2px solid var(--primary)">
2022-02-24 12:03:28 +00:00
<td>{{pos1}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{v.namecolor}};font-weight:bold" href="/@{{v.username}}"><img loading="lazy" src="{{v.profile_url}}" class="pp20"><span {% if v.patron %}class="patron" style="background-color:#{{v.namecolor}}"{% endif %}>{{v.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{v.coins}}</td>
2022-01-18 11:44:00 +00:00
</tr>
{% endif %}
2021-12-14 22:48:37 +00:00
</table>
<pre>
</pre>
2022-01-19 06:20:05 +00:00
<h5 style="font-weight:bold;text-align: center">Top 25 by coins spent in shop</h5>
2021-12-14 22:48:37 +00:00
<pre>
</pre>
2022-01-03 10:59:29 +00:00
<div class="overflow-x-auto"><table class="table table-striped mb-5">
2021-12-14 22:48:37 +00:00
<thead class="bg-primary text-white">
<tr>
2022-02-24 12:03:28 +00:00
<th>#</th>
<th>Name</th>
<th>Coins</th>
2021-12-14 22:48:37 +00:00
</tr>
</thead>
{% for user in users7 %}
2022-01-22 15:38:40 +00:00
<tr {% if v.id == user.id %}class="self"{% endif %}>
2022-02-24 12:03:28 +00:00
<td>{{loop.index}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{user.namecolor}};font-weight:bold" href="/@{{user.username}}"><img loading="lazy" src="{{user.profile_url}}" class="pp20"><span {% if user.patron %}class="patron" style="background-color:#{{user.namecolor}}"{% endif %}>{{user.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{user.coins_spent}}</td>
2021-12-14 22:48:37 +00:00
</tr>
{% endfor %}
2022-01-18 11:52:38 +00:00
{% if pos7 > 25 %}
2022-01-18 11:57:29 +00:00
<tr style="border-top:2px solid var(--primary)">
2022-02-24 12:03:28 +00:00
<td>{{pos7}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{v.namecolor}};font-weight:bold" href="/@{{v.username}}"><img loading="lazy" src="{{v.profile_url}}" class="pp20"><span {% if v.patron %}class="patron" style="background-color:#{{v.namecolor}}"{% endif %}>{{v.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{v.coins_spent}}</td>
2022-01-18 11:52:38 +00:00
</tr>
{% endif %}
2021-12-14 22:48:37 +00:00
</table>
<pre>
</pre>
2022-01-19 06:20:05 +00:00
<h5 style="font-weight:bold;text-align: center">Top 25 by truescore</h5>
2021-12-23 14:19:18 +00:00
<pre>
</pre>
2022-01-03 10:59:29 +00:00
<div class="overflow-x-auto"><table class="table table-striped mb-5">
2021-12-23 14:19:18 +00:00
<thead class="bg-primary text-white">
<tr>
2022-02-24 12:03:28 +00:00
<th>#</th>
<th>Name</th>
<th>Truescore</th>
2021-12-23 14:19:18 +00:00
</tr>
</thead>
<tbody id="followers-table">
{% for user in users10 %}
2022-01-22 15:38:40 +00:00
<tr {% if v.id == user.id %}class="self"{% endif %}>
2022-02-24 12:03:28 +00:00
<td>{{loop.index}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{user.namecolor}};font-weight:bold" href="/@{{user.username}}"><img loading="lazy" src="{{user.profile_url}}" class="pp20"><span {% if user.patron %}class="patron" style="background-color:#{{user.namecolor}}"{% endif %}>{{user.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{user.truecoins}}</td>
2021-12-23 14:19:18 +00:00
</tr>
{% endfor %}
2022-01-18 11:52:38 +00:00
{% if pos10 > 25 %}
2022-01-18 11:57:29 +00:00
<tr style="border-top:2px solid var(--primary)">
2022-02-24 12:03:28 +00:00
<td>{{pos10}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{v.namecolor}};font-weight:bold" href="/@{{v.username}}"><img loading="lazy" src="{{v.profile_url}}" class="pp20"><span {% if v.patron %}class="patron" style="background-color:#{{v.namecolor}}"{% endif %}>{{v.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{v.truecoins}}</td>
2022-01-18 11:52:38 +00:00
</tr>
{% endif %}
2021-12-23 14:19:18 +00:00
</tbody>
</table>
<pre>
</pre>
2022-01-19 06:20:05 +00:00
<h5 style="font-weight:bold;text-align: center">Top 25 by followers</h5>
2021-12-14 22:48:37 +00:00
<pre>
</pre>
2022-01-03 10:59:29 +00:00
<div class="overflow-x-auto"><table class="table table-striped mb-5">
2021-12-14 22:48:37 +00:00
<thead class="bg-primary text-white">
<tr>
2022-02-24 12:03:28 +00:00
<th>#</th>
<th>Name</th>
<th>Followers</th>
2021-12-14 22:48:37 +00:00
</tr>
</thead>
{% for user in users2 %}
2022-01-22 15:38:40 +00:00
<tr {% if v.id == user.id %}class="self"{% endif %}>
2022-02-24 12:03:28 +00:00
<td>{{loop.index}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{user.namecolor}};font-weight:bold" href="/@{{user.username}}"><img loading="lazy" src="{{user.profile_url}}" class="pp20"><span {% if user.patron %}class="patron" style="background-color:#{{user.namecolor}}"{% endif %}>{{user.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{user.stored_subscriber_count}}</td>
2021-12-14 22:48:37 +00:00
</tr>
{% endfor %}
2022-01-18 11:52:38 +00:00
{% if pos2 > 25 %}
2022-01-18 11:57:29 +00:00
<tr style="border-top:2px solid var(--primary)">
2022-02-24 12:03:28 +00:00
<td>{{pos2}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{v.namecolor}};font-weight:bold" href="/@{{v.username}}"><img loading="lazy" src="{{v.profile_url}}" class="pp20"><span {% if v.patron %}class="patron" style="background-color:#{{v.namecolor}}"{% endif %}>{{v.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{v.stored_subscriber_count}}</td>
2022-01-18 11:52:38 +00:00
</tr>
{% endif %}
2021-12-14 22:48:37 +00:00
</table>
<pre>
</pre>
2022-01-19 06:20:05 +00:00
<h5 style="font-weight:bold;text-align: center">Top 25 by post count</h5>
2021-12-14 22:48:37 +00:00
<pre>
</pre>
2022-01-03 10:59:29 +00:00
<div class="overflow-x-auto"><table class="table table-striped mb-5">
2021-12-14 22:48:37 +00:00
<thead class="bg-primary text-white">
<tr>
2022-02-24 12:03:28 +00:00
<th>#</th>
<th>Name</th>
<th>Posts</th>
2021-12-14 22:48:37 +00:00
</tr>
</thead>
{% for user in users3 %}
2022-01-22 15:38:40 +00:00
<tr {% if v.id == user.id %}class="self"{% endif %}>
2022-02-24 12:03:28 +00:00
<td>{{loop.index}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{user.namecolor}};font-weight:bold" href="/@{{user.username}}"><img loading="lazy" src="{{user.profile_url}}" class="pp20"><span {% if user.patron %}class="patron" style="background-color:#{{user.namecolor}}"{% endif %}>{{user.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{user.post_count}}</td>
2021-12-14 22:48:37 +00:00
</tr>
{% endfor %}
2022-01-18 11:52:38 +00:00
{% if pos3 > 25 %}
2022-01-18 11:57:29 +00:00
<tr style="border-top:2px solid var(--primary)">
2022-02-24 12:03:28 +00:00
<td>{{pos3}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{v.namecolor}};font-weight:bold" href="/@{{v.username}}"><img loading="lazy" src="{{v.profile_url}}" class="pp20"><span {% if v.patron %}class="patron" style="background-color:#{{v.namecolor}}"{% endif %}>{{v.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{v.post_count}}</td>
2022-01-18 11:52:38 +00:00
</tr>
{% endif %}
2021-12-14 22:48:37 +00:00
</table>
<pre>
</pre>
2022-01-19 06:20:05 +00:00
<h5 style="font-weight:bold;text-align: center">Top 25 by comment count</h5>
2021-12-14 22:48:37 +00:00
<pre>
</pre>
2022-01-03 10:59:29 +00:00
<div class="overflow-x-auto"><table class="table table-striped mb-5">
2021-12-14 22:48:37 +00:00
<thead class="bg-primary text-white">
<tr>
2022-02-24 12:03:28 +00:00
<th>#</th>
<th>Name</th>
<th>Comments</th>
2021-12-14 22:48:37 +00:00
</tr>
</thead>
{% for user in users4 %}
2022-01-22 15:38:40 +00:00
<tr {% if v.id == user.id %}class="self"{% endif %}>
2022-02-24 12:03:28 +00:00
<td>{{loop.index}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{user.namecolor}};font-weight:bold" href="/@{{user.username}}"><img loading="lazy" src="{{user.profile_url}}" class="pp20"><span {% if user.patron %}class="patron" style="background-color:#{{user.namecolor}}"{% endif %}>{{user.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{user.comment_count}}</td>
2021-12-14 22:48:37 +00:00
</tr>
{% endfor %}
2022-01-18 11:52:38 +00:00
{% if pos4 > 25 %}
2022-01-18 11:57:29 +00:00
<tr style="border-top:2px solid var(--primary)">
2022-02-24 12:03:28 +00:00
<td>{{pos4}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{v.namecolor}};font-weight:bold" href="/@{{v.username}}"><img loading="lazy" src="{{v.profile_url}}" class="pp20"><span {% if v.patron %}class="patron" style="background-color:#{{v.namecolor}}"{% endif %}>{{v.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{v.comment_count}}</td>
2022-01-18 11:52:38 +00:00
</tr>
{% endif %}
2021-12-14 22:48:37 +00:00
</table>
<pre>
</pre>
2022-01-19 06:20:05 +00:00
<h5 style="font-weight:bold;text-align: center">Top 25 by received awards</h5>
2021-12-14 22:48:37 +00:00
<pre>
</pre>
2022-01-03 10:59:29 +00:00
<div class="overflow-x-auto"><table class="table table-striped mb-5">
2021-12-14 22:48:37 +00:00
<thead class="bg-primary text-white">
<tr>
2022-02-24 12:03:28 +00:00
<th>#</th>
<th>Name</th>
<th>Awards</th>
2021-12-14 22:48:37 +00:00
</tr>
</thead>
{% for user in users5 %}
2022-01-22 15:38:40 +00:00
<tr {% if v.id == user.id %}class="self"{% endif %}>
2022-02-24 12:03:28 +00:00
<td>{{loop.index}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{user.namecolor}};font-weight:bold" href="/@{{user.username}}"><img loading="lazy" src="{{user.profile_url}}" class="pp20"><span {% if user.patron %}class="patron" style="background-color:#{{user.namecolor}}"{% endif %}>{{user.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{user.received_award_count}}</td>
2021-12-14 22:48:37 +00:00
</tr>
{% endfor %}
2022-01-18 12:06:58 +00:00
{% if pos5 > 25 %}
<tr style="border-top:2px solid var(--primary)">
2022-02-24 12:03:28 +00:00
<td>{{pos5}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{v.namecolor}};font-weight:bold" href="/@{{v.username}}"><img loading="lazy" src="{{v.profile_url}}" class="pp20"><span {% if v.patron %}class="patron" style="background-color:#{{v.namecolor}}"{% endif %}>{{v.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{v.received_award_count}}</td>
2022-01-18 12:06:58 +00:00
</tr>
{% endif %}
2021-12-14 22:48:37 +00:00
</table>
<pre>
</pre>
2022-01-19 06:20:05 +00:00
<h5 style="font-weight:bold;text-align: center">Top 25 by received downvotes</h5>
2021-12-14 22:48:37 +00:00
<pre>
</pre>
2022-01-03 10:59:29 +00:00
<div class="overflow-x-auto"><table class="table table-striped mb-5">
2021-12-14 22:48:37 +00:00
<thead class="bg-primary text-white">
<tr>
2022-02-24 12:03:28 +00:00
<th>#</th>
<th>Name</th>
<th>Downvotes</th>
2021-12-14 22:48:37 +00:00
</tr>
</thead>
<tbody id="followers-table">
{% for user in users9 %}
2022-01-22 15:38:40 +00:00
<tr {% if v.id == user[0].id %}class="self"{% endif %}>
2022-02-24 12:03:28 +00:00
<td>{{loop.index}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{user[0].namecolor}};font-weight:bold" href="/@{{user[0].username}}"><img loading="lazy" src="{{user[0].profile_url}}" class="pp20"><span {% if user[0].patron %}class="patron" style="background-color:#{{user[0].namecolor}}"{% endif %}>{{user[0].username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{user[1]}}</td>
2021-12-14 22:48:37 +00:00
</tr>
{% endfor %}
2022-01-23 23:06:34 +00:00
{% if pos9 and (pos9[0] > 25 or not pos9[1]) %}
2022-01-18 15:56:42 +00:00
<tr style="border-top:2px solid var(--primary)">
2022-02-24 12:03:28 +00:00
<td>{{pos9[0]}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{v.namecolor}};font-weight:bold" href="/@{{v.username}}"><img loading="lazy" src="{{v.profile_url}}" class="pp20"><span {% if v.patron %}class="patron" style="background-color:#{{v.namecolor}}"{% endif %}>{{v.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{pos9[1]}}</td>
2022-01-18 15:56:42 +00:00
</tr>
{% endif %}
2021-12-14 22:48:37 +00:00
</tbody>
</table>
2021-12-30 15:33:37 +00:00
<pre>
</pre>
2022-01-19 06:20:05 +00:00
<h5 style="font-weight:bold;text-align: center">Top 25 by badges</h5>
2021-12-30 15:33:37 +00:00
<pre>
</pre>
2022-01-03 10:59:29 +00:00
<div class="overflow-x-auto"><table class="table table-striped mb-5">
2021-12-30 15:33:37 +00:00
<thead class="bg-primary text-white">
<tr>
2022-02-24 12:03:28 +00:00
<th>#</th>
<th>Name</th>
<th>Badges</th>
2021-12-30 15:33:37 +00:00
</tr>
</thead>
<tbody id="followers-table">
2022-01-19 08:14:33 +00:00
{% for user in users11 %}
2022-02-20 01:54:56 +00:00
<tr {% if v.id == user[0].id %}class="self"{% endif %}>
2022-02-24 12:03:28 +00:00
<td>{{loop.index}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{user[0].namecolor}};font-weight:bold" href="/@{{user[0].username}}"><img loading="lazy" src="{{user[0].profile_url}}" class="pp20"><span {% if user[0].patron %}class="patron" style="background-color:#{{user[0].namecolor}}"{% endif %}>{{user[0].username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{user[1]}}</td>
2021-12-30 15:33:37 +00:00
</tr>
{% endfor %}
2022-02-20 01:54:56 +00:00
{% if pos11 and (pos11[0] > 25 or not pos11[1]) %}
2022-01-18 16:26:07 +00:00
<tr style="border-top:2px solid var(--primary)">
2022-02-24 12:03:28 +00:00
<td>{{pos11[0]}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{v.namecolor}};font-weight:bold" href="/@{{v.username}}"><img loading="lazy" src="{{v.profile_url}}" class="pp20"><span {% if v.patron %}class="patron" style="background-color:#{{v.namecolor}}"{% endif %}>{{v.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{pos11[1]}}</td>
2022-01-18 16:26:07 +00:00
</tr>
{% endif %}
2021-12-30 15:33:37 +00:00
</tbody>
</table>
2021-12-14 22:48:37 +00:00
2022-01-02 20:20:13 +00:00
{% if users6 %}
2021-12-14 22:48:37 +00:00
<pre>
</pre>
2022-01-19 06:20:05 +00:00
<h5 style="font-weight:bold;text-align: center">Top 25 by based count</h5>
2021-12-14 22:48:37 +00:00
<pre>
</pre>
2022-01-03 10:59:29 +00:00
<div class="overflow-x-auto"><table class="table table-striped mb-5">
2021-12-14 22:48:37 +00:00
<thead class="bg-primary text-white">
<tr>
2022-02-24 12:03:28 +00:00
<th>#</th>
<th>Name</th>
<th>Based count</th>
2021-12-14 22:48:37 +00:00
</tr>
</thead>
{% for user in users6 %}
2022-01-22 15:38:40 +00:00
<tr {% if v.id == user.id %}class="self"{% endif %}>
2022-02-24 12:03:28 +00:00
<td>{{loop.index}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{user.namecolor}};font-weight:bold" href="/@{{user.username}}"><img loading="lazy" src="{{user.profile_url}}" class="pp20"><span {% if user.patron %}class="patron" style="background-color:#{{user.namecolor}}"{% endif %}>{{user.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{user.basedcount}}</td>
2021-12-14 22:48:37 +00:00
</tr>
{% endfor %}
2022-01-18 12:06:58 +00:00
{% if pos6 > 25 %}
<tr style="border-top:2px solid var(--primary)">
2022-02-24 12:03:28 +00:00
<td>{{pos6}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{v.namecolor}};font-weight:bold" href="/@{{v.username}}"><img loading="lazy" src="{{v.profile_url}}" class="pp20"><span {% if v.patron %}class="patron" style="background-color:#{{v.namecolor}}"{% endif %}>{{v.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{v.basedcount}}</td>
2022-01-18 12:06:58 +00:00
</tr>
{% endif %}
2021-12-14 22:48:37 +00:00
</table>
{% endif %}
2022-01-02 20:20:13 +00:00
2022-01-23 23:06:34 +00:00
{% if users12 %}
2022-01-02 20:20:13 +00:00
<pre>
</pre>
2022-01-19 06:20:05 +00:00
<h5 style="font-weight:bold;text-align: center">Top 25 by marseys made</h5>
2022-01-02 20:20:13 +00:00
<pre>
</pre>
2022-01-03 10:59:29 +00:00
<div class="overflow-x-auto"><table class="table table-striped mb-5">
2022-01-02 20:20:13 +00:00
<thead class="bg-primary text-white">
<tr>
2022-02-24 12:03:28 +00:00
<th>#</th>
<th>Name</th>
<th>Marseys</th>
2022-01-02 20:20:13 +00:00
</tr>
</thead>
<tbody id="followers-table">
2022-01-23 23:06:34 +00:00
{% for user in users12 %}
2022-01-22 15:38:40 +00:00
<tr {% if v.id == user[0].id %}class="self"{% endif %}>
2022-02-24 12:03:28 +00:00
<td>{{loop.index}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{user[0].namecolor}};font-weight:bold" href="/@{{user[0].username}}"><img loading="lazy" src="{{user[0].profile_url}}" class="pp20"><span {% if user[0].patron %}class="patron" style="background-color:#{{user[0].namecolor}}"{% endif %}>{{user[0].username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{user[1]}}</td>
2022-01-02 20:20:13 +00:00
</tr>
{% endfor %}
2022-01-23 23:06:34 +00:00
{% if pos12 and (pos12[0] > 25 or not pos12[1]) %}
2022-01-18 16:26:07 +00:00
<tr style="border-top:2px solid var(--primary)">
2022-02-24 12:03:28 +00:00
<td>{{pos12[0]}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{v.namecolor}};font-weight:bold" href="/@{{v.username}}"><img loading="lazy" src="{{v.profile_url}}" class="pp20"><span {% if v.patron %}class="patron" style="background-color:#{{v.namecolor}}"{% endif %}>{{v.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{pos12[1]}}</td>
2022-01-18 16:26:07 +00:00
</tr>
{% endif %}
2022-01-02 20:20:13 +00:00
</tbody>
</table>
{% endif %}
2022-01-23 23:06:34 +00:00
{% if users13 %}
2022-01-11 04:35:44 +00:00
<pre>
</pre>
2022-01-19 06:20:05 +00:00
<h5 style="font-weight:bold;text-align: center">Top 25 by upvotes given</h5>
2022-01-11 04:35:44 +00:00
<pre>
</pre>
<div class="overflow-x-auto"><table class="table table-striped mb-5">
<thead class="bg-primary text-white">
<tr>
2022-02-24 12:03:28 +00:00
<th>#</th>
<th>Name</th>
<th>Upvotes</th>
2022-01-11 04:35:44 +00:00
</tr>
</thead>
<tbody id="followers-table">
2022-01-23 23:06:34 +00:00
{% for user in users13 %}
2022-01-22 15:38:40 +00:00
<tr {% if v.id == user[0].id %}class="self"{% endif %}>
2022-02-24 12:03:28 +00:00
<td>{{loop.index}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{user[0].namecolor}};font-weight:bold" href="/@{{user[0].username}}"><img loading="lazy" src="{{user[0].profile_url}}" class="pp20"><span {% if user[0].patron %}class="patron" style="background-color:#{{user[0].namecolor}}"{% endif %}>{{user[0].username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{user[1]}}</td>
2022-01-11 04:35:44 +00:00
</tr>
{% endfor %}
2022-01-23 23:06:34 +00:00
{% if pos13 and (pos13[0] > 25 or not pos13[1]) %}
2022-01-18 16:26:07 +00:00
<tr style="border-top:2px solid var(--primary)">
2022-02-24 12:03:28 +00:00
<td>{{pos13[0]}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{v.namecolor}};font-weight:bold" href="/@{{v.username}}"><img loading="lazy" src="{{v.profile_url}}" class="pp20"><span {% if v.patron %}class="patron" style="background-color:#{{v.namecolor}}"{% endif %}>{{v.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{pos13[1]}}</td>
2022-01-18 16:26:07 +00:00
</tr>
{% endif %}
2022-01-11 04:35:44 +00:00
</tbody>
</table>
{% endif %}
2022-02-18 19:18:10 +00:00
<h5 style="font-weight:bold;text-align: center">Top 25 by winnings</h5>
2022-01-25 01:59:58 +00:00
<pre></pre>
<div class="overflow-x-auto"><table class="table table-striped mb-5">
<thead class="bg-primary text-white">
<tr>
2022-02-24 12:03:28 +00:00
<th>#</th>
<th>Name</th>
<th>Winnings</th>
2022-01-25 01:59:58 +00:00
</tr>
</thead>
{% for user in users14 %}
<tr {% if v.id == user.id %}class="self"{% endif %}>
2022-02-24 12:03:28 +00:00
<td>{{loop.index}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{user.namecolor}};font-weight:bold" href="/@{{user.username}}"><img loading="lazy" src="{{user.profile_url}}" class="pp20"><span {% if user.patron %}class="patron" style="background-color:#{{user.namecolor}}"{% endif %}>{{user.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{user.winnings}}</td>
2022-01-25 01:59:58 +00:00
</tr>
{% endfor %}
{% if pos14 > 25 %}
<tr style="border-top:2px solid var(--primary)">
2022-02-24 12:03:28 +00:00
<td>{{pos14}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{v.namecolor}};font-weight:bold" href="/@{{v.username}}"><img loading="lazy" src="{{v.profile_url}}" class="pp20"><span {% if v.patron %}class="patron" style="background-color:#{{v.namecolor}}"{% endif %}>{{v.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{v.winnings}}</td>
2022-01-25 01:59:58 +00:00
</tr>
{% endif %}
</table>
<pre>
</pre>
2022-02-18 19:18:10 +00:00
<h5 style="font-weight:bold;text-align: center">Bottom 25 by winnings</h5>
2022-01-25 01:59:58 +00:00
<pre></pre>
<div class="overflow-x-auto"><table class="table table-striped mb-5">
<thead class="bg-primary text-white">
<tr>
2022-02-24 12:03:28 +00:00
<th>#</th>
<th>Name</th>
<th>Winnings</th>
2022-01-25 01:59:58 +00:00
</tr>
</thead>
{% for user in users15 %}
<tr {% if v.id == user.id %}class="self"{% endif %}>
2022-02-24 12:03:28 +00:00
<td>{{loop.index}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{user.namecolor}};font-weight:bold" href="/@{{user.username}}"><img loading="lazy" src="{{user.profile_url}}" class="pp20"><span {% if user.patron %}class="patron" style="background-color:#{{user.namecolor}}"{% endif %}>{{user.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{user.winnings}}</td>
2022-01-25 01:59:58 +00:00
</tr>
{% endfor %}
{% if pos15 > 25 %}
<tr style="border-top:2px solid var(--primary)">
2022-02-24 12:03:28 +00:00
<td>{{pos15}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{v.namecolor}};font-weight:bold" href="/@{{v.username}}"><img loading="lazy" src="{{v.profile_url}}" class="pp20"><span {% if v.patron %}class="patron" style="background-color:#{{v.namecolor}}"{% endif %}>{{v.username}}</span></a></td>
2022-02-24 12:03:28 +00:00
<td>{{v.winnings}}</td>
2022-01-25 01:59:58 +00:00
</tr>
{% endif %}
</table>
<pre>
</pre>
2021-11-30 22:19:41 +00:00
{% endblock %}