diff options
author | Jmzd8 <jdcartwright2008@icloud.com> | 2022-02-25 18:00:15 +0000 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2022-02-25 18:11:39 +0000 |
commit | 84ab4edfd7257683665c6908eaa951297d881b72 (patch) | |
tree | 5f1490c95bccaf0e50da268ff5b6165d82b1ba1f /apioforum/templates | |
parent | 6ebb3c20e178daa87d28c6fde40ce34e8f119b74 (diff) |
added pagination to user pages
Diffstat (limited to 'apioforum/templates')
-rw-r--r-- | apioforum/templates/view_user.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apioforum/templates/view_user.html b/apioforum/templates/view_user.html index 612c2c0..44a0b9d 100644 --- a/apioforum/templates/view_user.html +++ b/apioforum/templates/view_user.html @@ -1,4 +1,4 @@ -{% from 'common.html' import disp_post,ts %} +{% from 'common.html' import disp_post,ts,tag,thread_breadcrumb,pagination_nav %} {% extends 'base.html' %} {% block header %} <h1>{%block title %}{{user.username|e}}{% endblock %}</h1> @@ -31,5 +31,6 @@ {{ disp_post(post, False) }} {% endfor %} </div> +{{ pagination_nav(page,max_pageno,'user.view_user', username=user.username) }} {% endif %} -{% endblock %} +{% endblock %}
\ No newline at end of file |