This commit is contained in:
Thomas Chartron 2021-11-11 21:19:33 +01:00
parent 0cd7ec0f67
commit f4ffe83aa7

View file

@ -186,6 +186,7 @@
<!----------------------------------------------------------->
{% block pagination %}
{% if paginator.previous or paginator.next %}
<div class="max-w-7xl px-2 sm:px-6 lg:px-8 flex justify-between">
<div class="flex justify-between">
<a class="border border-black rounded-lg" href='{{ paginator.previous }}' {% if not paginator.previous %}disabled{% endif %}>
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
@ -209,6 +210,7 @@
</svg>
</a>
</div>
</div>
{% endif %}
{% endblock%}