mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 15:21:01 +00:00
26 lines
986 B
HTML
26 lines
986 B
HTML
{% extends "identity/view.html" %}
|
|
|
|
{% block title %}{% if inbound %}Followers{% else %}Following{% endif %} - {{ identity }}{% endblock %}
|
|
|
|
{% block subcontent %}
|
|
|
|
<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 %}
|
|
|
|
<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>
|
|
</div>
|
|
|
|
{% endblock %}
|