From e56abeef8a8b0a33bd6016c1237720384596671f Mon Sep 17 00:00:00 2001 From: Deimos Date: Wed, 20 Feb 2019 15:32:48 -0700 Subject: [PATCH] Add pagination buttons to top of user page Like the topic-listing buttons, these buttons only show on the second page or later. --- tildes/tildes/templates/user.jinja2 | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/tildes/tildes/templates/user.jinja2 b/tildes/tildes/templates/user.jinja2 index 1374758..57c7b5b 100644 --- a/tildes/tildes/templates/user.jinja2 +++ b/tildes/tildes/templates/user.jinja2 @@ -49,6 +49,22 @@ {% endif %} {% if posts %} + {% if request.has_permission("view_history", user) and posts.has_prev_page %} + + {% endif %} +
    {% for post in posts if request.has_permission('view', post) %}
  1. @@ -71,13 +87,13 @@ {% if request.has_permission("view_history", user) and (posts.has_prev_page or posts.has_next_page) %}