42 lines
No EOL
1.6 KiB
Text
42 lines
No EOL
1.6 KiB
Text
<nav class="flex justify-between mt-8 items-center">
|
|
{% if pagination.href.previous %}
|
|
<a href="{{ pagination.href.previous }}">
|
|
<button class="py-2 pr-4 text-primary-500 hover:text-primary-400" aria-label="Previous page">
|
|
{% heroicon "solid" "arrow-left" "Prevous" "width=20 height=20" %}
|
|
</button>
|
|
</a>
|
|
{% else %}
|
|
<button
|
|
class="py-2 pr-4 cursor-not-allowed disabled:opacity-50"
|
|
aria-label="Previous page (disabled)"
|
|
disabled>
|
|
{% heroicon "solid" "arrow-left" "Prevous" "width=20 height=20" %}
|
|
</button>
|
|
{% endif %}
|
|
|
|
<div class="flex flex-row items-center">
|
|
<select id="pagination" class="mr-1 inline rounded-lg px-1 appearance-none text-center border border-primary-500 dark:text-white dark:bg-gray-900 text-gray-800 focus-visible:border-primary-400 focus-visible:outline-none cursor-pointer relative">
|
|
{% for pageEntry in pagination.pages %}
|
|
<option {% if page.url == pagination.hrefs[forloop.index0] %}selected{% endif %} value="{{ forloop.index }}">{{ forloop.index }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
<span>
|
|
of {{ pagination.links.size }}</span>
|
|
</div>
|
|
|
|
|
|
{% if pagination.href.next %}
|
|
<a href="{{ pagination.href.next }}">
|
|
<button class="py-2 pl-4 text-primary-500 hover:text-primary-400" aria-label="Next page">
|
|
{% heroicon "solid" "arrow-right" "Next" "width=20 height=20" %}
|
|
</button>
|
|
</a>
|
|
{% else %}
|
|
<button
|
|
class="py-2 pl-4 cursor-not-allowed disabled:opacity-50"
|
|
aria-label="Next page (disabled)"
|
|
disabled>
|
|
{% heroicon "solid" "arrow-right" "Next" "width=20 height=20" %}
|
|
</button>
|
|
{% endif %}
|
|
</nav> |