summaryrefslogtreecommitdiffstats
path: root/templates/activities/follows.html
diff options
context:
space:
mode:
authorGabriel Rodríguez Alberich2022-12-17 01:06:29 +0100
committerGitHub2022-12-16 17:06:29 -0700
commitfb2eea956ef7416eb755ebecf58db7f9a57215c4 (patch)
tree0ca587705b99d7caab12bdb3557874c8c41e8356 /templates/activities/follows.html
parent45c6978bc397691b22db0360b16b19979eac7dce (diff)
downloadtakahe-fb2eea956ef7416eb755ebecf58db7f9a57215c4.tar.gz
takahe-fb2eea956ef7416eb755ebecf58db7f9a57215c4.tar.bz2
takahe-fb2eea956ef7416eb755ebecf58db7f9a57215c4.zip
Several pagination improvements (#170)
Home/Notification gets pagination, Follows becomes ListView
Diffstat (limited to 'templates/activities/follows.html')
-rw-r--r--templates/activities/follows.html16
1 files changed, 13 insertions, 3 deletions
diff --git a/templates/activities/follows.html b/templates/activities/follows.html
index 18c7811..e2c0ece 100644
--- a/templates/activities/follows.html
+++ b/templates/activities/follows.html
@@ -4,17 +4,17 @@
{% block content %}
<section class="icon-menu">
- {% for identity, details in identities %}
+ {% for identity, follow_type in page_obj %}
<a class="option" href="{{ identity.urls.view }}">
<img src="{{ identity.local_icon_url.relative }}">
<span class="handle">
{{ identity.html_name_or_handle }}
<small>@{{ identity.handle }}</small>
</span>
- {% if details.outbound %}
+ {% if follow_type == "outbound" %}
<span class="pill">Following</span>
{% endif %}
- {% if details.inbound %}
+ {% if follow_type == "inbound" %}
<span class="pill">Follows You</span>
{% endif %}
</a>
@@ -22,4 +22,14 @@
<p class="option empty">You have no follows.</p>
{% endfor %}
</section>
+
+ <div class="pagination">
+ {% if page_obj.has_previous %}
+ <div class="load-more"><a class="button" href=".?page={{ page_obj.previous_page_number }}">Previous Page</a></div>
+ {% endif %}
+
+ {% if page_obj.has_next %}
+ <div class="load-more"><a class="button" href=".?page={{ page_obj.next_page_number }}">Next Page</a></div>
+ {% endif %}
+ </div>
{% endblock %}