forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-12-25 00:52:31 +02:00
parent d011222329
commit ade4f6a635
5 changed files with 6 additions and 45 deletions

View File

@ -292,7 +292,7 @@
<script src="/assets/js/default.js?a=1"></script>
{% endif %}
<link rel="stylesheet" href="/assets/css/lite-youtube.css?a=1">
<link rel="stylesheet" href="/assets/css/lite-youtube.css?a=2">
<script src="/assets/js/lite-youtube.js?a=1"></script>
</body>

View File

@ -109,7 +109,7 @@
</pre>
<h5 style="font-weight:bold;text-align: center;">top 25 by post count</h5>
<h5 style="font-weight:bold;text-align: center;">Top 25 by post count</h5>
<pre>
@ -134,7 +134,7 @@
</pre>
<h5 style="font-weight:bold;text-align: center;">top 25 by comment count</h5>
<h5 style="font-weight:bold;text-align: center;">Top 25 by comment count</h5>
<pre>
@ -161,7 +161,7 @@
</pre>
<h5 style="font-weight:bold;text-align: center;">top 25 by received awards</h5>
<h5 style="font-weight:bold;text-align: center;">Top 25 by received awards</h5>
<pre>
@ -188,7 +188,7 @@
</pre>
<h5 style="font-weight:bold;text-align: center;">Most downvoted users</h5>
<h5 style="font-weight:bold;text-align: center;">Top 25 by received downvotes</h5>
<pre>
@ -221,7 +221,7 @@
</pre>
<h5 style="font-weight:bold;text-align: center;">top 25 by based count</h5>
<h5 style="font-weight:bold;text-align: center;">Top 25 by based count</h5>
<pre>

View File

@ -1,10 +0,0 @@
{% extends "default.html" %}
{% block content %}
<pre>
</pre>
<h5 style="text-align: center">Most downvoted users</h5>
<pre></pre>
{% endblock %}

View File

@ -673,10 +673,6 @@
background: -webkit-linear-gradient(left, red, orange, yellow, green, blue, indigo, violet );
text-shadow:-1px -1px 0 black,1px -1px 0 black,-1px 1px 0 black,1px 1px 0 black;
}
lite-youtube {
margin: auto
}
</style>
<script src="/assets/js/clipboard.js?a=1"></script>

View File

@ -1,25 +0,0 @@
{% extends "settings2.html" %}
{% block pagetitle %}Truescore Leaderboard{% endblock %}
{% block content %}
<pre class="d-none d-md-inline-block"></pre>
<h5 style="font-weight:bold;text-align: center;">Top 25 by truescore</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;">Score</th>
</tr>
</thead>
{% for user in users %}
<tr>
<td style="font-weight:bold;">{{loop.index}}</td>
<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>
<td style="font-weight:bold; text-align:right;">{{user.truecoins}}</td>
</tr>
{% endfor %}
</table>
{% endblock %}