forked from rDrama/rDrama
1
0
Fork 0
rDrama/drama/templates/leaderboard.html

79 lines
2.1 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>
<h5 style="font-weight:bold;">Top 25 dramatards by dramacoins</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-07-22 11:19:33 +00:00
<td><a style="color:#{{user.namecolor}}; font-weight:bold;" href="/@{{user.username}}">{{user.username}}</a></td>
2021-07-21 01:12:26 +00:00
<td style="font-weight:bold; text-align:right;">{{user.dramacoins}}</td>
</tr>
{% endfor %}
</table>
<pre>
</pre>
<h5 style="font-weight:bold;">Top 10 dramatards 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-07-22 11:19:33 +00:00
<td><a style="color:#{{user.namecolor}}; font-weight:bold;" href="/@{{user.username}}">{{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>
<h5 style="font-weight:bold;">Top 10 dramatards 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;">Post count</th>
</tr>
</thead>
{% for user in users3 %}
<tr>
<td style="font-weight:bold;">{{users3.index(user)+1}}</td>
<td><a style="color:#{{user.namecolor}}; font-weight:bold;" href="/@{{user.username}}">{{user.username}}</a></td>
<td style="font-weight:bold; text-align:right;">{{user.post_count}}</td>
</tr>
{% endfor %}
</table>
<pre>
</pre>
2021-07-21 01:12:26 +00:00
{% endblock %}