forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/templates/sub/subscribers.html

24 lines
422 B
HTML
Raw Normal View History

2022-03-06 00:21:13 +00:00
{% extends "default.html" %}
{% block content %}
<pre>
</pre>
<h5>Users subscribed to /h/{{sub}}</h5>
2022-03-06 00:21:13 +00:00
<pre></pre>
<div class="overflow-x-auto"><table class="table table-striped mb-5">
<thead class="bg-primary text-white">
<tr>
<th>#</th>
<th>Name</th>
</tr>
</thead>
{% for user in users %}
<tr>
<td>{{loop.index}}</td>
2022-09-05 03:01:06 +00:00
<td>{% include "user_in_table.html" %}</td>
2022-03-06 00:21:13 +00:00
</tr>
{% endfor %}
</table>
{% endblock %}