rDrama/files/templates/owners.html

28 lines
674 B
HTML
Raw Permalink Normal View History

{% extends "default.html" %}
2023-11-04 18:41:47 +00:00
{% block pagetitle %}{{name}} {{kind}} Owners{% endblock %}
{% block content %}
2023-11-04 18:41:47 +00:00
<h5 class="my-3"><a href="{{href}}">{{name}}</a> {{kind}} Owners</h5>
2023-10-29 12:51:00 +00:00
<div class="overflow-x-auto mt-1">
<table>
<thead>
2023-10-29 12:51:00 +00:00
<tr>
<th>Name</th>
<th class="disable-sort-click">Owned since</td>
</tr>
</thead>
<tbody id="owners-table">
{% for user, created_utc in users %}
<tr>
<td>{% include "user_in_table.html" %}</td>
<td {% if created_utc %}data-time="{{created_utc}}"{% endif %}></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}
{% block pagenav %}
2024-03-03 01:25:02 +00:00
{{macros.pagination()}}
{% endblock %}