view_passwd.html: add view password template

This commit is contained in:
Zankaria 2024-12-27 19:13:27 +01:00
parent 04a9f138aa
commit 6acfbfc9b3

View File

@ -0,0 +1,10 @@
{{ include('mod/user_posts_list.html', {posts: posts}) }}
<div class="pages" style="display:flex;justify-content:center;align-items:center;width:fit-content;margin:5px auto;">
<a href="?/user_posts/passwd/{{ passwd }}">[Page 1]</a>
{% if cursor_prev %}
<a href="?/user_posts/passwd/{{ passwd }}/cursor/{{ cursor_prev }}">[Previous Page]</a>
{% endif %}
{% if cursor_next %}
<a href="?/user_posts/passwd/{{ passwd }}/cursor/{{ cursor_next }}">[Next Page]</a>
{% endif %}
</div>