rDrama/files/templates/hole/blockers.html

24 lines
591 B
HTML

{% extends "default.html" %}
{% block pagetitle %}Users {{verb}} /h/{{hole}}{% endblock %}
{% block content %}
<h5 class="mt-3">Users {{verb}} /h/{{hole}}</h5>
<div class="overflow-x-auto mt-1">
<table>
<thead>
<tr>
<th>#</th>
<th>Name</th>
<th>{{verb.title()}} since</th>
</tr>
</thead>
{% for user, object in users %}
<tr>
<td>{{loop.index}}</td>
<td>{% include "user_in_table.html" %}</td>
<td {% if object.created_utc %}data-time="{{object.created_utc}}"{% endif %}></td>
</tr>
{% endfor %}
</table>
</div>
{% endblock %}