fix pfps not working in /leaderboard

master
Aevann1 2022-09-05 00:25:22 +02:00
parent 57dcd0ddef
commit 9d57ce9b6b
1 changed files with 8 additions and 8 deletions

View File

@ -360,7 +360,7 @@
</tr>
</thead>
<tbody id="followers-table">
{% for user in users9 %}
{% for user, num in users9 %}
<tr {% if v.id == user[0].id %}class="self"{% endif %}>
<td>{{loop.index}}</td>
<td>
@ -374,7 +374,7 @@
<span {% if user.patron %}class="patron" style="background-color:#{{user.name_color}}"{% endif %}>{{user.username}}</span>
</a>
</td>
<td>{{user[1]}}</td>
<td>{{num}}</td>
</tr>
{% endfor %}
{% if pos9 and (pos9[0] > 25 or not pos9[1]) %}
@ -408,7 +408,7 @@
</tr>
</thead>
<tbody id="followers-table">
{% for user in users11 %}
{% for user, num in users11 %}
<tr {% if v.id == user[0].id %}class="self"{% endif %}>
<td>{{loop.index}}</td>
<td>
@ -422,7 +422,7 @@
<span {% if user.patron %}class="patron" style="background-color:#{{user.name_color}}"{% endif %}>{{user.username}}</span>
</a>
</td>
<td>{{user[1]}}</td>
<td>{{num}}</td>
</tr>
{% endfor %}
{% if pos11 and (pos11[0] > 25 or not pos11[1]) %}
@ -509,7 +509,7 @@
</tr>
</thead>
<tbody id="followers-table">
{% for user in users12 %}
{% for user, num in users12 %}
<tr {% if v.id == user[0].id %}class="self"{% endif %}>
<td>{{loop.index}}</td>
<td>
@ -523,7 +523,7 @@
<span {% if user.patron %}class="patron" style="background-color:#{{user.name_color}}"{% endif %}>{{user.username}}</span>
</a>
</td>
<td>{{user[1]}}</td>
<td>{{num}}</td>
</tr>
{% endfor %}
{% if pos12 and (pos12[0] > 25 or not pos12[1]) %}
@ -560,7 +560,7 @@
</tr>
</thead>
<tbody id="followers-table">
{% for user in users13 %}
{% for user, num in users13 %}
<tr {% if v.id == user[0].id %}class="self"{% endif %}>
<td>{{loop.index}}</td>
<td>
@ -574,7 +574,7 @@
<span {% if user.patron %}class="patron" style="background-color:#{{user.name_color}}"{% endif %}>{{user.username}}</span>
</a>
</td>
<td>{{user[1]}}</td>
<td>{{num}}</td>
</tr>
{% endfor %}
{% if pos13 and (pos13[0] > 25 or not pos13[1]) %}