2022-02-24 12:03:28 +00:00
|
|
|
{% extends "default.html" %}
|
|
|
|
{% block content %}
|
2022-03-31 16:28:53 +00:00
|
|
|
<script src="/assets/js/sort_table.js?v=241"></script>
|
2022-03-06 00:21:13 +00:00
|
|
|
|
2022-02-24 12:03:28 +00:00
|
|
|
<pre>
|
|
|
|
|
|
|
|
|
|
|
|
</pre>
|
2022-03-09 02:04:37 +00:00
|
|
|
<h5>List of holes</h5>
|
2022-02-24 12:03:28 +00:00
|
|
|
<pre></pre>
|
2022-03-06 00:21:13 +00:00
|
|
|
<div class="overflow-x-auto">
|
|
|
|
<table id="sortable_table" class="table table-striped mb-5">
|
|
|
|
<thead class="bg-primary text-white">
|
2022-02-24 12:03:28 +00:00
|
|
|
<tr>
|
|
|
|
<th>#</th>
|
|
|
|
<th>Name</th>
|
2022-03-06 01:53:11 +00:00
|
|
|
<th role="button" onclick="sort_table(2)">Posts</th>
|
|
|
|
<th role="button" onclick="sort_table(3)">Subscribers</th>
|
|
|
|
<th role="button" onclick="sort_table(4)">Blockers</th>
|
|
|
|
|
2022-02-24 12:03:28 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
{% for sub, count in subs %}
|
|
|
|
<tr>
|
|
|
|
<td>{{loop.index}}</td>
|
2022-03-09 02:04:37 +00:00
|
|
|
<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}}/subscribers">{{sub.subscription_num}}</a></td>
|
|
|
|
<td><a href="/h/{{sub.name}}/blockers">{{sub.block_num}}</a></td>
|
2022-02-24 12:03:28 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
{% endblock %}
|