forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/templates/hole/holes.html

38 lines
1017 B
HTML
Raw Normal View History

2022-02-24 12:03:28 +00:00
{% extends "default.html" %}
{% block pagetitle %}Hole List{% endblock %}
2022-02-24 12:03:28 +00:00
{% block content %}
<h5 class="mt-3 mb-1">Hole List</h5>
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>
2022-12-10 10:40:34 +00:00
<th>Posts</th>
<th>Followers</th>
<th>Blockers</th>
<th>Created on</th>
2022-06-27 02:47:49 +00:00
</tr>
</thead>
2022-02-24 12:03:28 +00:00
2023-10-07 18:26:16 +00:00
{% for hole, count in subs %}
2022-08-19 21:53:45 +00:00
<tr>
<td>{{loop.index}}</td>
2023-10-07 17:55:50 +00:00
<td><a href="/h/{{hole}}">{{hole}} {% if hole.name in v.hole_blocks %}<span class="text-danger">[blocked, visit it to unblock it]</span>{% endif %}</a></td>
<td><a href="/h/{{hole}}">{{count}}</a></td>
<td><a href="/h/{{hole}}/followers">{{hole.follow_num}}</a></td>
{% if hole.stealth %}
<td>{{total_users - hole.join_num}}</td>
{% else %}
2023-10-07 17:55:50 +00:00
<td><a href="/h/{{hole}}/blockers">{{hole.block_num}}</a></td>
{% endif %}
2023-10-07 17:55:50 +00:00
<td data-time="{{hole.created_utc}}"></td>
2022-06-27 02:47:49 +00:00
</tr>
{% endfor %}
</table>
</div>
2022-12-10 10:40:34 +00:00
2022-10-12 05:40:59 +00:00
{% endblock %}