mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-14 19:31:06 +00:00
24 lines
787 B
HTML
24 lines
787 B
HTML
{% extends "identity/view.html" %}
|
|
|
|
{% block title %}{% if self.inbound %}Followers{% else %}Following{% endif %} - {{ identity }}{% endblock %}
|
|
|
|
{% block subcontent %}
|
|
|
|
{% for identity in page_obj %}
|
|
{% include "activities/_identity.html" %}
|
|
{% empty %}
|
|
<span class="empty">
|
|
This person has no {% if self.inbound %}followers{% else %}follows{% endif %} yet.
|
|
</span>
|
|
{% endfor %}
|
|
|
|
<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.has_next %}
|
|
<a class="button" href=".?page={{ page_obj.next_page_number }}">Next Page</a>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% endblock %}
|