2021-11-15 00:22:03 +00:00
|
|
|
{% extends "default.html" %}
|
|
|
|
{% block content %}
|
2021-12-14 22:48:37 +00:00
|
|
|
<pre>
|
|
|
|
|
|
|
|
|
|
|
|
</pre>
|
|
|
|
<h5 style="text-align: center">{{name2}}</h5>
|
|
|
|
<pre></pre>
|
2022-01-03 10:59:29 +00:00
|
|
|
<div class="overflow-x-auto"><table class="table table-striped mb-5">
|
2021-12-14 22:48:37 +00:00
|
|
|
<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">{{name}}votes</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody id="followers-table">
|
|
|
|
{% for user in users %}
|
|
|
|
<tr>
|
|
|
|
<td style="font-weight: bold">{{loop.index}}</td>
|
2022-01-12 06:30:56 +00:00
|
|
|
<td><a style="color:#{{user[0].namecolor}}; font-weight:bold;" href="/@{{user[0].username}}"><img alt="@{{user[0].username}}'s profile picture" loading="lazy" src="{{user[0].profile_url}}" class="pp20"><span {% if user[0].patron %}class="patron" style="background-color:#{{user[0].namecolor}}"{% endif %}>{{user[0].username}}</span></a></td>
|
2021-12-14 22:48:37 +00:00
|
|
|
<td style="font-weight: bold">{{user[1]}}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2021-11-15 00:22:03 +00:00
|
|
|
{% endblock %}
|