rDrama/files/templates/grassed.html

23 lines
474 B
HTML

{% extends "default.html" %}
{% block pagetitle %}Grassed Users{% endblock %}
{% block content %}
<div class="overflow-x-auto">
<table>
<thead>
<tr>
<th>Name</th>
<th>Grasser</th>
</tr>
</thead>
{% for user in users %}
{% if can_see(v, user) %}
<tr>
<td>{% include "user_in_table.html" %}</td>
<td>{{user.ban_reason.split('by ')[1] | safe}}</td>
</tr>
{% endif %}
{% endfor %}
</table>
</div>
{% endblock %}