forked from MarseyWorld/MarseyWorld
fix
parent
63cc0fd752
commit
d6af81f6b4
|
@ -1,28 +1,25 @@
|
||||||
{% extends "default.html" %}
|
{% extends "default.html" %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<pre>
|
<div class="col-span-full">
|
||||||
|
<h5 style="text-align: center">{{name2}}</h5>
|
||||||
|
<pre></pre>
|
||||||
</pre>
|
<table class="table table-striped mb-5">
|
||||||
<h5 style="text-align: center">{{name2}}</h5>
|
<thead class="bg-primary text-white">
|
||||||
<pre></pre>
|
<tr>
|
||||||
<table class="table table-striped mb-5">
|
<th style="font-weight: bold">#</th>
|
||||||
<thead class="bg-primary text-white">
|
<th style="font-weight: bold">Name</th>
|
||||||
<tr>
|
<th style="font-weight: bold">{{name}}votes</th>
|
||||||
<th style="font-weight: bold">#</th>
|
</tr>
|
||||||
<th style="font-weight: bold">Name</th>
|
</thead>
|
||||||
<th style="font-weight: bold">{{name}}votes</th>
|
<tbody id="followers-table">
|
||||||
</tr>
|
{% for user in users %}
|
||||||
</thead>
|
<tr>
|
||||||
<tbody id="followers-table">
|
<td style="font-weight: bold">{{loop.index}}</td>
|
||||||
{% for user in users %}
|
<td><a style="color:#{{user[0].namecolor}}; font-weight:bold;" href="/@{{user[0].username}}"><img loading="lazy" src="/uid/{{user[0].id}}/pic" class="pp20"><span {% if user[0].patron %}class="patron" style="background-color:#{{user[0].namecolor}};"{% endif %}>{{user[0].username}}</span></a></td>
|
||||||
<tr>
|
<td style="font-weight: bold">{{user[1]}}</td>
|
||||||
<td style="font-weight: bold">{{loop.index}}</td>
|
</tr>
|
||||||
<td><a style="color:#{{user[0].namecolor}}; font-weight:bold;" href="/@{{user[0].username}}"><img loading="lazy" src="/uid/{{user[0].id}}/pic" class="pp20"><span {% if user[0].patron %}class="patron" style="background-color:#{{user[0].namecolor}};"{% endif %}>{{user[0].username}}</span></a></td>
|
{% endfor %}
|
||||||
<td style="font-weight: bold">{{user[1]}}</td>
|
</tbody>
|
||||||
</tr>
|
</table>
|
||||||
{% endfor %}
|
</div>
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
Loading…
Reference in New Issue