rDrama/files/templates/poorcels.html

26 lines
438 B
HTML
Raw Normal View History

2022-06-27 02:21:34 +00:00
{% extends "default.html" %}
{% block content %}
<pre>
</pre>
<h5>Poorcels</h5>
<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>
<tbody id="followers-table">
{% 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-06-27 02:21:34 +00:00
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}