rDrama/files/templates/leaderboard.html

104 lines
3.5 KiB
HTML
Raw Normal View History

2021-07-25 21:59:15 +00:00
{% extends "settings2.html" %}
2021-07-21 01:12:26 +00:00
{% block pagetitle %}Leaderboard{% endblock %}
{% block content %}
<pre class="d-none d-md-inline-block"></pre>
2021-08-04 16:21:10 +00:00
<h5 style="font-weight:bold;text-align: center;">Top 25 by {{"coins_name" | app_config}}</h5>
2021-07-21 01:12:26 +00:00
<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-08-02 07:00:38 +00:00
<td><a {% if user.animatedname %}class="{% if user.patron %}patron{% else %}leaderboard{% endif %}"{% endif %} style="color:#{{user.namecolor}}; font-weight:bold;" href="/@{{user.username}}"><img src="/uid/{{user.id}}/pic/profile" class="profile-pic-20 mr-1">{{user.username}}</a></td>
2021-08-04 16:21:10 +00:00
<td style="font-weight:bold; text-align:right;">{{user.coins}}</td>
2021-07-21 01:12:26 +00:00
</tr>
{% endfor %}
</table>
<pre>
</pre>
2021-08-04 16:21:10 +00:00
<h5 style="font-weight:bold;text-align: center;">Top 10 by followers</h5>
2021-07-21 01:12:26 +00:00
<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-08-02 07:00:38 +00:00
<td><a {% if user.animatedname %}class="{% if user.patron %}patron{% else %}leaderboard{% endif %}"{% endif %} style="color:#{{user.namecolor}}; font-weight:bold;" href="/@{{user.username}}"><img src="/uid/{{user.id}}/pic/profile" class="profile-pic-20 mr-1">{{user.username}}</a></td>
2021-07-26 02:06:05 +00:00
<td style="font-weight:bold; text-align:right;">{{user.stored_subscriber_count}}</td>
2021-07-21 01:12:26 +00:00
</tr>
{% endfor %}
</table>
2021-07-27 00:13:17 +00:00
<pre>
</pre>
2021-08-04 16:21:10 +00:00
<h5 style="font-weight:bold;text-align: center;">Top 10 by post count</h5>
2021-07-27 00:13:17 +00:00
<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;">Post count</th>
</tr>
</thead>
{% for user in users3 %}
<tr>
<td style="font-weight:bold;">{{users3.index(user)+1}}</td>
2021-08-02 07:00:38 +00:00
<td><a {% if user.animatedname %}class="{% if user.patron %}patron{% else %}leaderboard{% endif %}"{% endif %} style="color:#{{user.namecolor}}; font-weight:bold;" href="/@{{user.username}}"><img src="/uid/{{user.id}}/pic/profile" class="profile-pic-20 mr-1">{{user.username}}</a></td>
2021-07-27 00:13:17 +00:00
<td style="font-weight:bold; text-align:right;">{{user.post_count}}</td>
</tr>
{% endfor %}
</table>
<pre>
2021-07-27 00:23:41 +00:00
</pre>
2021-08-04 16:21:10 +00:00
<h5 style="font-weight:bold;text-align: center;">Top 10 by comment count</h5>
2021-07-27 00:23:41 +00:00
<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;">Comment count</th>
</tr>
</thead>
2021-07-27 00:25:55 +00:00
{% for user in users4 %}
2021-07-27 00:23:41 +00:00
<tr>
2021-07-27 00:25:55 +00:00
<td style="font-weight:bold;">{{users4.index(user)+1}}</td>
2021-08-02 07:00:38 +00:00
<td><a {% if user.animatedname %}class="{% if user.patron %}patron{% else %}leaderboard{% endif %}"{% endif %} style="color:#{{user.namecolor}}; font-weight:bold; fonts" href="/@{{user.username}}"><img src="/uid/{{user.id}}/pic/profile" class="profile-pic-20 mr-1">{{user.username}}</a></td>
2021-07-27 00:23:41 +00:00
<td style="font-weight:bold; text-align:right;">{{user.comment_count}}</td>
</tr>
{% endfor %}
</table>
<pre>
2021-07-27 00:13:17 +00:00
</pre>
2021-07-21 01:12:26 +00:00
{% endblock %}