Always show pagination buttons
This commit is contained in:
parent
ac30206e97
commit
92f1a17b9f
1 changed files with 6 additions and 2 deletions
|
@ -2,11 +2,15 @@
|
|||
|
||||
<nav class="pagination is-centered" role="navigation" aria-label="pagination">
|
||||
{% if page.has_previous %}
|
||||
<a class="pagination-previous" href="{% querystring page=page.previous_page_number %}">Previous</a>
|
||||
<a class="pagination-previous" href="{% querystring page=page.previous_page_number %}">←</a>
|
||||
{% else %}
|
||||
<a class="pagination-previous is-disabled">←</a>
|
||||
{% endif %}
|
||||
|
||||
{% if page.has_next %}
|
||||
<a class="pagination-next" href="{% querystring page=page.next_page_number %}">Next page</a>
|
||||
<a class="pagination-next" href="{% querystring page=page.next_page_number %}">→</a>
|
||||
{% else %}
|
||||
<a class="pagination-next is-disabled">→</a>
|
||||
{% endif %}
|
||||
|
||||
<ul class="pagination-list">
|
||||
|
|
Loading…
Reference in a new issue