2022-02-21 06:45:01 +00:00
|
|
|
{% extends "default.html" %}
|
|
|
|
{% block content %}
|
2022-02-22 14:00:22 +00:00
|
|
|
<pre>
|
|
|
|
|
|
|
|
|
|
|
|
</pre>
|
2022-06-09 20:24:24 +00:00
|
|
|
<h5>Users {{verb}} /h/{{sub.name}}</h5>
|
2022-02-21 06:45:01 +00:00
|
|
|
<pre></pre>
|
|
|
|
<div class="overflow-x-auto"><table class="table table-striped mb-5">
|
|
|
|
<thead class="bg-primary text-white">
|
|
|
|
<tr>
|
2022-02-24 12:03:28 +00:00
|
|
|
<th>#</th>
|
|
|
|
<th>Name</th>
|
2022-02-21 06:45:01 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
{% for user in users %}
|
|
|
|
<tr>
|
2022-02-24 12:03:28 +00:00
|
|
|
<td>{{loop.index}}</td>
|
2022-08-27 02:57:19 +00:00
|
|
|
<td><a style="color:#{{user.name_color}}" href="/@{{user.username}}"><img loading="lazy" src="{{user.profile_url}}" class="pp20"><span {% if user.patron %}class="patron" style="background-color:#{{user.name_color}}"{% endif %}>{{user.username}}</span></a></td>
|
2022-02-21 06:45:01 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
{% endblock %}
|