rDrama/files/templates/sub/blockers.html

24 lines
735 B
HTML
Raw Normal View History

2022-02-21 06:45:01 +00:00
{% extends "default.html" %}
{% block content %}
2022-02-22 14:00:22 +00:00
<pre>
</pre>
2022-02-21 06:45:01 +00:00
<h5>Users blocking /s/{{sub.name}}</h5>
<pre></pre>
<div class="overflow-x-auto"><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>
</tr>
</thead>
{% for user in users %}
<tr>
<td style="font-weight: bold">{{loop.index}}</td>
2022-02-23 05:19:57 +00:00
<td><a style="color:#{{user.namecolor}}; font-weight:bold;" href="/@{{user.username}}"><img loading="lazy" src="{{user.profile_url}}" class="pp20"><span {% if user.patron %}class="patron" style="background-color:#{{user.namecolor}}"{% endif %}>{{user.username}}</span></a></td>
2022-02-21 06:45:01 +00:00
</tr>
{% endfor %}
</table>
{% endblock %}