remotes/1693045480750635534/spooky-22
Aevann1 2022-01-28 08:39:15 +02:00
parent 7e57e0b5a2
commit 2b1dea35f0
1 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@
{% if page>1 %}
<li class="page-item">
{% if request.full_path == "/notifications?" %}
<small><a class="page-link" href="{{request.full_path}}?page={{page-1}}">Previous</a></small>
<small><a class="page-link" href="{{request.full_path}}page={{page-1}}">Previous</a></small>
{% else %}
<small><a class="page-link" href="{{request.full_path}}&page={{page-1}}">Previous</a></small>
{% endif %}
@ -88,7 +88,7 @@
{% if next_exists %}
<li class="page-item">
{% if request.full_path == "/notifications?" %}
<small><a class="page-link" href="{{request.full_path}}?page={{page+1}}">Next</a></small>
<small><a class="page-link" href="{{request.full_path}}page={{page+1}}">Next</a></small>
{% else %}
<small><a class="page-link" href="{{request.full_path}}&page={{page+1}}">Next</a></small>
{% endif %}