summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/identity/view.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/identity/view.html b/templates/identity/view.html
index bf60c2e..f69ce9a 100644
--- a/templates/identity/view.html
+++ b/templates/identity/view.html
@@ -56,9 +56,13 @@
{% endif %}
{% endif %}
- {% for post in posts %}
+ {% for post in page_obj %}
{% include "activities/_post.html" %}
{% empty %}
<span class="empty">No posts yet.</a>
{% endfor %}
+
+ {% if page_obj.has_next %}
+ <div class="load-more"><a class="button" href=".?page={{ page_obj.next_page_number }}">Next Page</a></div>
+ {% endif %}
{% endblock %}