forked from MarseyWorld/MarseyWorld
31 lines
765 B
HTML
31 lines
765 B
HTML
{% extends "default.html" %}
|
|
{% block content %}
|
|
<pre>
|
|
|
|
|
|
</pre>
|
|
<h5>{{HOLE_NAME|capitalize}} List</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 role="button" onclick="sort_table(2)">Posts</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
{% for sub, count in subs %}
|
|
<tr>
|
|
<td>{{loop.index}}</td>
|
|
<td><a href="/h/{{sub.name}}">{{sub.name}} {% if sub.name in v.all_blocks %}<span class="text-danger">[hidden from your main feed, visit it to unhide it]</span>{% endif %}</a></td>
|
|
<td><a href="/h/{{sub.name}}" >{{count}}</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
|
|
<script src="/assets/js/sort_table.js?v=244"></script>
|
|
|
|
{% endblock %} |