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 +++++++++++++--- templates/activities/home.html | 12 +++++++++++- templates/activities/local.html | 12 +++++++++--- templates/activities/notifications.html | 12 +++++++++--- templates/activities/tag.html | 12 +++++++++--- 5 files changed, 51 insertions(+), 13 deletions(-) (limited to 'templates') 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 %} diff --git a/templates/activities/home.html b/templates/activities/home.html index 546da0d..06fa88c 100644 --- a/templates/activities/home.html +++ b/templates/activities/home.html @@ -4,7 +4,7 @@ {% block title %}Home{% endblock %} {% block content %} - {% for event in events %} + {% for event in page_obj %} {% if event.type == "post" %} {% include "activities/_post.html" with post=event.subject_post %} {% elif event.type == "boost" %} @@ -21,4 +21,14 @@ {% empty %} Nothing to show yet. {% endfor %} + + {% endblock %} diff --git a/templates/activities/local.html b/templates/activities/local.html index c03b0c0..c3d180b 100644 --- a/templates/activities/local.html +++ b/templates/activities/local.html @@ -9,7 +9,13 @@ No posts yet. {% endfor %} - {% if page_obj.has_next %} -
Next Page
- {% endif %} + {% endblock %} diff --git a/templates/activities/notifications.html b/templates/activities/notifications.html index 890a2ad..89ca4d8 100644 --- a/templates/activities/notifications.html +++ b/templates/activities/notifications.html @@ -32,7 +32,13 @@ No notifications yet. {% endfor %} - {% if page_obj.has_next %} -
Next Page
- {% endif %} + {% endblock %} diff --git a/templates/activities/tag.html b/templates/activities/tag.html index a319b6a..f0684f0 100644 --- a/templates/activities/tag.html +++ b/templates/activities/tag.html @@ -10,7 +10,13 @@ No posts yet. {% endfor %} - {% if page_obj.has_next %} -
Next Page
- {% endif %} + {% endblock %} -- cgit v1.2.3