takahe/templates/admin/hashtags.html

65 wiersze
2.7 KiB
HTML
Czysty Zwykły widok Historia

2022-11-29 04:41:36 +00:00
{% extends "settings/base.html" %}
{% block subtitle %}Hashtags{% endblock %}
{% block content %}
<table class="items">
2022-12-20 09:16:03 +00:00
{% for hashtag in page_obj %}
<tr>
<td class="icon">
<a href="{{ hashtag.urls.admin_edit }}" class="overlay"></a>
2023-01-09 16:58:17 +00:00
<i class="fa-solid fa-hashtag"></i>
</td>
<td class="name">
<a href="{{ hashtag.urls.admin_edit }}" class="overlay"></a>
{{ hashtag.display_name }}
<small>{% if hashtag.public %}Public{% elif hashtag.public is None %}Unreviewed{% else %}Private{% endif %}</small>
</td>
<td class="stat">
{% if hashtag.stats %}
{{ hashtag.stats.total }}
<small>post{{ hashtag.stats.total|pluralize }}</small>
{% endif %}
</td>
<td class="stat">
{% if hashtag.aliases %}
{% for alias in hashtag.aliases %}
{{ alias }}{% if not forloop.last %}, {% endif %}
{% endfor %}
<small>Aliases</small>
{% endif %}
</td>
<td class="actions">
{% if hashtag.public is not True %}
<a hx-post="{{ hashtag.urls.admin_enable }}" title="Make Public"><i class="fa-solid fa-circle-check"></i></a>
{% endif %}
{% if hashtag.public is not False %}
<a hx-post="{{ hashtag.urls.admin_disable }}" title="Make Private"><i class="fa-solid fa-circle-xmark"></i></a>
{% endif %}
</td>
</tr>
2022-11-29 04:41:36 +00:00
{% empty %}
<tr class="empty">
<td>
{% if query %}
No hashtags match your query.
{% else %}
There are no hashtags yet.
{% endif %}
</td>
</tr>
2022-11-29 04:41:36 +00:00
{% endfor %}
</table>
<div class="pagination">
{% if page_obj.has_previous %}
<a class="button" href=".?page={{ page_obj.previous_page_number }}">Previous Page</a>
{% endif %}
{% if page_obj.paginator.count %}
<span class="count">{{ page_obj.paginator.count }} hashtag{{page_obj.paginator.count|pluralize }}</span>
{% endif %}
{% if page_obj.has_next %}
<a class="button" href=".?page={{ page_obj.next_page_number }}">Next Page</a>
{% endif %}
</div>
2022-11-29 04:41:36 +00:00
{% endblock %}