master
Aevann1 2022-01-28 08:48:59 +02:00
parent 2b1dea35f0
commit d56b9984e0
1 changed files with 4 additions and 4 deletions

View File

@ -76,9 +76,9 @@
{% 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.path}}?page={{page-1}}">Previous</a></small>
{% else %}
<small><a class="page-link" href="{{request.full_path}}&page={{page-1}}">Previous</a></small>
<small><a class="page-link" href="{{request.path}}&page={{page-1}}">Previous</a></small>
{% endif %}
</li>
{% else %}
@ -88,9 +88,9 @@
{% 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.path}}?page={{page+1}}">Next</a></small>
{% else %}
<small><a class="page-link" href="{{request.full_path}}&page={{page+1}}">Next</a></small>
<small><a class="page-link" href="{{request.path}}&page={{page+1}}">Next</a></small>
{% endif %}
</li>
{% else %}