From fb2eea956ef7416eb755ebecf58db7f9a57215c4 Mon Sep 17 00:00:00 2001 From: Gabriel Rodríguez Alberich Date: Sat, 17 Dec 2022 01:06:29 +0100 Subject: Several pagination improvements (#170) Home/Notification gets pagination, Follows becomes ListView--- templates/activities/follows.html | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'templates/activities/follows.html') 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 %}
- {% for identity, details in identities %} + {% for identity, follow_type in page_obj %} {{ identity.html_name_or_handle }} @{{ identity.handle }} - {% if details.outbound %} + {% if follow_type == "outbound" %} Following {% endif %} - {% if details.inbound %} + {% if follow_type == "inbound" %} Follows You {% endif %} @@ -22,4 +22,14 @@

You have no follows.

{% endfor %}
+ + {% endblock %} -- cgit v1.2.3