forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-01-28 08:55:05 +02:00
parent 8886df6787
commit b80c6f3fb0
1 changed files with 6 additions and 6 deletions

View File

@ -82,10 +82,10 @@
{% else %}
{% set path = request.full_path %}
{% endif %}
{% if request.full_path == "/notifications?" %}
<small><a class="page-link" href="{{path}}page={{page-1}}">Previous</a></small>
{% else %}
{% if '=true' in request.full_path %}
<small><a class="page-link" href="{{path}}&page={{page-1}}">Previous</a></small>
{% else %}
<small><a class="page-link" href="{{request.path}}?page={{page-1}}">Previous</a></small>
{% endif %}
</li>
{% else %}
@ -101,10 +101,10 @@
{% else %}
{% set path = request.full_path %}
{% endif %}
{% if request.full_path == "/notifications?" %}
<small><a class="page-link" href="{{path}}page={{page+1}}">Next</a></small>
{% else %}
{% if '=true' in request.full_path %}
<small><a class="page-link" href="{{path}}&page={{page+1}}">Next</a></small>
{% else %}
<small><a class="page-link" href="{{request.path}}?page={{page+1}}">Next</a></small>
{% endif %}
</li>
{% else %}