2022-02-24 12:03:28 +00:00
|
|
|
{% extends "default.html" %}
|
|
|
|
{% block content %}
|
2022-07-03 10:10:04 +00:00
|
|
|
<script src="/assets/js/sort_table.js?v=243"></script>
|
2022-03-06 00:21:13 +00:00
|
|
|
|
2022-02-24 12:03:28 +00:00
|
|
|
<pre>
|
|
|
|
|
|
|
|
|
|
|
|
</pre>
|
2022-06-23 09:02:49 +00:00
|
|
|
<h5>List of {{HOLE_NAME}}s</h5>
|
2022-02-24 12:03:28 +00:00
|
|
|
<pre></pre>
|
2022-03-06 00:21:13 +00:00
|
|
|
<div class="overflow-x-auto">
|
2022-06-27 02:47:49 +00:00
|
|
|
<table class="table table-striped mb-5">
|
|
|
|
<thead class="bg-primary text-white">
|
|
|
|
<tr>
|
|
|
|
<th>#</th>
|
|
|
|
<th>Name</th>
|
|
|
|
<th role="button" onclick="sort_table(2)">Posts</th>
|
|
|
|
<th role="button" onclick="sort_table(3)">Followers</th>
|
|
|
|
<th role="button" onclick="sort_table(4)">Blockers</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
2022-02-24 12:03:28 +00:00
|
|
|
|
2022-06-27 02:47:49 +00:00
|
|
|
{% for sub, count in subs %}
|
|
|
|
<tr>
|
|
|
|
<td>{{loop.index}}</td>
|
|
|
|
<td><a href="/h/{{sub.name}}">{{sub.name}}</a></td>
|
|
|
|
<td><a href="/h/{{sub.name}}">{{count}}</a></td>
|
|
|
|
<td><a href="/h/{{sub.name}}/followers">{{sub.follow_num}}</a></td>
|
|
|
|
<td><a href="/h/{{sub.name}}/blockers">{{sub.block_num}}</a></td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</div>
|
2022-02-24 12:03:28 +00:00
|
|
|
{% endblock %}
|