2022-02-24 12:03:28 +00:00
{% extends "default.html" %}
2023-10-07 18:04:12 +00:00
{% block pagetitle %}Hole List{% endblock %}
2022-02-24 12:03:28 +00:00
{% block content %}
2023-10-07 18:04:12 +00:00
< 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 >
2022-11-11 15:00:56 +00:00
{% else %}
2023-10-07 17:55:50 +00:00
< td > < a href = "/h/{{hole}}/blockers" > {{hole.block_num}}< / a > < / td >
2022-11-11 15:00:56 +00:00
{% 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-07-09 08:35:47 +00:00
2022-12-10 10:40:34 +00:00
2022-07-09 08:35:47 +00:00
2022-10-12 05:40:59 +00:00
{% endblock %}