2022-02-24 12:03:28 +00:00
|
|
|
{% extends "default.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<pre>
|
|
|
|
|
|
|
|
|
|
|
|
</pre>
|
|
|
|
<h5>List of subs with at least 1 post</h5>
|
|
|
|
<pre></pre>
|
|
|
|
<div class="overflow-x-auto"><table class="table table-striped mb-5">
|
|
|
|
<thead class="bg-primary text-white">
|
|
|
|
<tr>
|
|
|
|
<th>#</th>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Posts</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
{% for sub, count in subs %}
|
|
|
|
<tr>
|
|
|
|
<td>{{loop.index}}</td>
|
2022-02-24 13:00:27 +00:00
|
|
|
<td><a href="/s/{{sub}}" {% if v and v.newtab and not g.webview %}target="_blank"{% endif %}>{{sub}}</a></td>
|
2022-02-24 12:03:28 +00:00
|
|
|
<td>{{count}}</a>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
{% endblock %}
|