takahe/templates/identity/follows.html

27 wiersze
986 B
HTML
Czysty Zwykły widok Historia

2022-12-21 20:36:10 +00:00
{% extends "identity/view.html" %}
{% block title %}{% if inbound %}Followers{% else %}Following{% endif %} - {{ identity }}{% endblock %}
2022-12-21 20:36:10 +00:00
{% block subcontent %}
2023-05-06 06:04:20 +00:00
<div class="page-content">
{% for identity in page_obj %}
{% include "activities/_identity.html" %}
{% empty %}
<span class="empty">
This person has no {% if inbound %}followers{% else %}follows{% endif %} yet.
</span>
{% endfor %}
2022-12-21 20:36:10 +00:00
2023-05-06 06:04:20 +00:00
<div class="pagination">
{% if page_obj.has_previous and not request.htmx %}
<a class="button" href=".?page={{ page_obj.previous_page_number }}">Previous Page</a>
{% endif %}
{% if page_obj.has_next %}
<a class="button" href=".?page={{ page_obj.next_page_number }}" hx-boost="true" hx-select=".page-content" hx-target=".pagination" hx-swap="outerHTML">Next Page</a>
{% endif %}
</div>
2022-12-21 20:36:10 +00:00
</div>
{% endblock %}