2021-10-15 14:08:27 +00:00
|
|
|
{% extends "settings2.html" %}
|
|
|
|
|
|
|
|
{% block pagetitle %}Leaderboard{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<pre class="d-none d-md-inline-block"></pre>
|
|
|
|
<h5 style="font-weight:bold;text-align: center;">Top 25 by {{'COINS_NAME' | app_config}}</h5>
|
|
|
|
<pre></pre>
|
|
|
|
<table class="table table-striped mb-5">
|
|
|
|
<thead class="bg-primary text-white">
|
|
|
|
<tr>
|
|
|
|
<th style="font-weight:bold;">#</th>
|
|
|
|
<th style="font-weight:bold;">Name</th>
|
|
|
|
<th style="font-weight:bold; text-align:right;">Coins</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
{% for user in users1 %}
|
|
|
|
<tr>
|
|
|
|
<td style="font-weight:bold;">{{users1.index(user)+1}}</td>
|
2021-11-04 21:14:38 +00:00
|
|
|
<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>
|
2021-10-15 14:08:27 +00:00
|
|
|
<td style="font-weight:bold; text-align:right;">{{user.coins}}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
<pre>
|
|
|
|
|
|
|
|
|
|
|
|
</pre>
|
|
|
|
<h5 style="font-weight:bold;text-align: center;">Top 10 by followers</h5>
|
|
|
|
<pre>
|
|
|
|
|
|
|
|
|
|
|
|
</pre>
|
|
|
|
<table class="table table-striped mb-5">
|
|
|
|
<thead class="bg-primary text-white">
|
|
|
|
<tr>
|
|
|
|
<th style="font-weight:bold;">#</th>
|
|
|
|
<th style="font-weight:bold;">Name</th>
|
|
|
|
<th style="font-weight:bold; text-align:right;">Followers</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
{% for user in users2 %}
|
|
|
|
<tr>
|
|
|
|
<td style="font-weight:bold;">{{users2.index(user)+1}}</td>
|
2021-11-04 21:14:38 +00:00
|
|
|
<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>
|
2021-10-15 14:08:27 +00:00
|
|
|
<td style="font-weight:bold; text-align:right;">{{user.stored_subscriber_count}}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
<pre>
|
|
|
|
|
|
|
|
|
|
|
|
</pre>
|
|
|
|
<h5 style="font-weight:bold;text-align: center;">Top 10 by post count</h5>
|
|
|
|
<pre>
|
|
|
|
|
|
|
|
|
|
|
|
</pre>
|
|
|
|
<table class="table table-striped mb-5">
|
|
|
|
<thead class="bg-primary text-white">
|
|
|
|
<tr>
|
|
|
|
<th style="font-weight:bold;">#</th>
|
|
|
|
<th style="font-weight:bold;">Name</th>
|
|
|
|
<th style="font-weight:bold; text-align:right;">Posts</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
{% for user in users3 %}
|
|
|
|
<tr>
|
|
|
|
<td style="font-weight:bold;">{{users3.index(user)+1}}</td>
|
2021-11-04 21:14:38 +00:00
|
|
|
<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>
|
2021-10-15 14:08:27 +00:00
|
|
|
<td style="font-weight:bold; text-align:right;">{{user.post_count}}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
<pre>
|
|
|
|
|
|
|
|
|
|
|
|
</pre>
|
|
|
|
<h5 style="font-weight:bold;text-align: center;">Top 10 by comment count</h5>
|
|
|
|
<pre>
|
|
|
|
|
|
|
|
|
|
|
|
</pre>
|
|
|
|
<table class="table table-striped mb-5">
|
|
|
|
<thead class="bg-primary text-white">
|
|
|
|
<tr>
|
|
|
|
<th style="font-weight:bold;">#</th>
|
|
|
|
<th style="font-weight:bold;">Name</th>
|
|
|
|
<th style="font-weight:bold; text-align:right;">Comments</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
{% for user in users4 %}
|
|
|
|
<tr>
|
|
|
|
<td style="font-weight:bold;">{{users4.index(user)+1}}</td>
|
2021-11-04 21:14:38 +00:00
|
|
|
<td><a style="color:#{{user.namecolor}}; font-weight:bold; fonts" 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>
|
2021-10-15 14:08:27 +00:00
|
|
|
<td style="font-weight:bold; text-align:right;">{{user.comment_count}}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
|
|
|
|
|
|
|
|
</pre>
|
|
|
|
<h5 style="font-weight:bold;text-align: center;">Top 10 by received awards</h5>
|
|
|
|
<pre>
|
|
|
|
|
|
|
|
|
|
|
|
</pre>
|
|
|
|
<table class="table table-striped mb-5">
|
|
|
|
<thead class="bg-primary text-white">
|
|
|
|
<tr>
|
|
|
|
<th style="font-weight:bold;">#</th>
|
|
|
|
<th style="font-weight:bold;">Name</th>
|
|
|
|
<th style="font-weight:bold; text-align:right;">Awards</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
{% for user in users5 %}
|
|
|
|
<tr>
|
|
|
|
<td style="font-weight:bold;">{{users5.index(user)+1}}</td>
|
2021-11-04 21:14:38 +00:00
|
|
|
<td><a style="color:#{{user.namecolor}}; font-weight:bold; fonts" 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>
|
2021-10-15 14:08:27 +00:00
|
|
|
<td style="font-weight:bold; text-align:right;">{{user.received_award_count}}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
2021-10-27 20:12:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
|
|
|
|
|
|
|
|
</pre>
|
|
|
|
<h5 style="font-weight:bold;text-align: center;">Top 10 by coins spent in shop</h5>
|
|
|
|
<pre>
|
|
|
|
|
|
|
|
|
|
|
|
</pre>
|
|
|
|
<table class="table table-striped mb-5">
|
|
|
|
<thead class="bg-primary text-white">
|
|
|
|
<tr>
|
|
|
|
<th style="font-weight:bold;">#</th>
|
|
|
|
<th style="font-weight:bold;">Name</th>
|
|
|
|
<th style="font-weight:bold; text-align:right;">Coins</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
{% for user in users7 %}
|
|
|
|
<tr>
|
|
|
|
<td style="font-weight:bold;">{{users7.index(user)+1}}</td>
|
2021-11-04 21:14:38 +00:00
|
|
|
<td><a style="color:#{{user.namecolor}}; font-weight:bold; fonts" 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>
|
2021-10-27 20:12:16 +00:00
|
|
|
<td style="font-weight:bold; text-align:right;">{{user.coins_spent}}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
2021-10-15 14:08:27 +00:00
|
|
|
{% if "pcm" in request.host %}
|
|
|
|
<pre>
|
|
|
|
|
|
|
|
|
|
|
|
</pre>
|
|
|
|
<h5 style="font-weight:bold;text-align: center;">Top 10 by based count</h5>
|
|
|
|
<pre>
|
|
|
|
|
|
|
|
|
|
|
|
</pre>
|
|
|
|
<table class="table table-striped mb-5">
|
|
|
|
<thead class="bg-primary text-white">
|
|
|
|
<tr>
|
|
|
|
<th style="font-weight:bold;">#</th>
|
|
|
|
<th style="font-weight:bold;">Name</th>
|
|
|
|
<th style="font-weight:bold; text-align:right;">Based count</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
{% for user in users6 %}
|
|
|
|
<tr>
|
|
|
|
<td style="font-weight:bold;">{{users6.index(user)+1}}</td>
|
2021-11-04 21:14:38 +00:00
|
|
|
<td><a style="color:#{{user.namecolor}}; font-weight:bold; fonts" 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>
|
2021-10-15 14:08:27 +00:00
|
|
|
<td style="font-weight:bold; text-align:right;">{{user.basedcount}}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
{% endif %}
|
2021-07-21 01:12:26 +00:00
|
|
|
{% endblock %}
|