2023-09-05 18:24:10 +00:00
|
|
|
{% extends "default.html" %}
|
|
|
|
{% block pagetitle %}!commenters{% endblock %}
|
|
|
|
{% block content %}
|
2023-10-29 12:51:00 +00:00
|
|
|
<h5 class="my-3">!commenters</h5>
|
|
|
|
<div class="overflow-x-auto">
|
2024-02-12 14:18:13 +00:00
|
|
|
<table>
|
|
|
|
<thead>
|
2023-10-29 12:51:00 +00:00
|
|
|
<tr>
|
|
|
|
<th>#</th>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>First commented on</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
{% for user, comment_id, comment_created_utc in users %}
|
|
|
|
<tr>
|
|
|
|
<td>{{loop.index}}</td>
|
|
|
|
<td>{% include "user_in_table.html" %}</td>
|
|
|
|
<td><a href="/comment/{{comment_id}}" data-time="{{comment_created_utc}}"></td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</div>
|
2023-09-05 18:24:10 +00:00
|
|
|
{% endblock %}
|