diff options
author | ubq323 <ubq323> | 2021-08-19 02:13:36 +0000 |
---|---|---|
committer | ubq323 <ubq323> | 2021-08-19 02:13:36 +0000 |
commit | af27d6578a0dd75229f89b9c64992aec0cd19b4c (patch) | |
tree | eff4fc5e1dd1767a78ef008c373b045a898bf2b5 /apioforum/templates | |
parent | d2e51e7b8bb2f765e79c98f13165b0faf59a302c (diff) |
navbar
Diffstat (limited to 'apioforum/templates')
-rw-r--r-- | apioforum/templates/view_thread.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/apioforum/templates/view_thread.html b/apioforum/templates/view_thread.html index 132fd44..11d21e4 100644 --- a/apioforum/templates/view_thread.html +++ b/apioforum/templates/view_thread.html @@ -69,6 +69,17 @@ {% endif %} {% endfor %} </div> +<nav aria-label="pagination" id="pages"> + {% if page > 1 %} + <a href="{{url_for('thread.view_thread',thread_id=thread.id)}}" aria-label="first page"><<</a> + <a href="{{url_for('thread.view_thread',thread_id=thread.id,page=page-1)}}" aria-label="previous page"><</a> + {% endif %} + page {{page}} of {{max_pageno}} + {% if page < max_pageno %} {# > #} + <a href="{{url_for('thread.view_thread',thread_id=thread.id,page=page+1)}}" aria-label="next page">></a> + <a href="{{url_for('thread.view_thread',thread_id=thread.id,page=max_pageno)}}" aria-label="last page">>></a> + {% endif %} +</nav> {% if g.user and has_permission(thread.forum, g.user, "p_reply_threads") %} <form class="new-post" action="{{url_for('thread.create_post',thread_id=thread.id)}}" method="POST"> <textarea class="new-post-box" placeholder="your post here..." name="content"></textarea> |