forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-21 22:10:56 -06:00
parent ae801e0e18
commit 48938081ee
1 changed files with 2 additions and 2 deletions

View File

@ -74,14 +74,14 @@
{% block pagenav %}
<div class="col-span-full">
<ul class="flex flex-wrap items-center mb-4">
<li class="{% if page==1 %} disabled{% endif %}">
<li class="{% if page==1 %}opacity-50 cursor-not-allowed pointer-events-none{% endif %}">
<small>
<a class="block px-2 py-1 text-sm font-bold text-primary bg-gray-900" href="?sort={{sort}}&q={{query | urlencode}}&t={{t}}&page={{page-1}}" tabindex="-1" {% if page==1 %}aria-disabled="true"{% endif %}>
Previous
</a>
</small>
</li>
<li class="{% if not next_exists %} disabled{% endif %}">
<li class="{% if not next_exists %}opacity-50 cursor-not-allowed pointer-events-none{% endif %}">
<small>
<a class="block px-2 py-1 text-sm font-bold text-primary bg-gray-900" href="?sort={{sort}}&q={{query | urlencode}}&t={{t}}&page={{page+1}}">Next</a>
</small>