rDrama/files/templates/chuds.html

19 lines
396 B
HTML

{% extends "settings2.html" %}
{% block pagetitle %}Chuds{% endblock %}
{% block content %}
<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>
<td>{% include "user_in_table.html" %}</td>
</tr>
{% endfor %}
</table>
{% endblock %}