2018-12-14 09:28:37 +00:00
|
|
|
{% load i18n %}
|
2020-10-03 15:50:17 +00:00
|
|
|
{% load passbook_utils %}
|
2018-12-14 09:28:37 +00:00
|
|
|
|
2020-10-03 15:50:17 +00:00
|
|
|
<div class="pf-c-toolbar__item pf-m-pagination ">
|
|
|
|
<div class="pf-c-pagination pf-m-compact pf-m-hidden pf-m-visible-on-md">
|
|
|
|
<div class="pf-c-pagination pf-m-compact pf-m-compact pf-m-hidden pf-m-visible-on-md">
|
|
|
|
<div class="pf-c-options-menu">
|
|
|
|
<div class="pf-c-options-menu__toggle pf-m-text pf-m-plain">
|
|
|
|
<span class="pf-c-options-menu__toggle-text">
|
|
|
|
{% blocktrans with start_index=page_obj.start_index end_index=page_obj.end_index total_items=paginator.count %}
|
|
|
|
{{ start_index }} - {{ end_index }} of {{ total_items }}
|
|
|
|
{% endblocktrans %}
|
|
|
|
</span>
|
|
|
|
</div>
|
2020-06-09 11:40:03 +00:00
|
|
|
</div>
|
2020-10-03 15:50:17 +00:00
|
|
|
<nav class="pf-c-pagination__nav" aria-label="Pagination">
|
|
|
|
<div class="pf-c-pagination__nav-control pf-m-prev">
|
|
|
|
<a class="pf-c-button pf-m-plain"
|
|
|
|
{% if page_obj.has_previous %}
|
2020-11-21 19:59:20 +00:00
|
|
|
href="{{ request.path }}?{% query_transform page=page_obj.previous_page_number %}"
|
2020-10-03 15:50:17 +00:00
|
|
|
{% else %}
|
|
|
|
disabled
|
|
|
|
{% endif %}
|
|
|
|
aria-label="{% trans 'Go to previous page' %}">
|
|
|
|
<i class="fas fa-angle-left" aria-hidden="true"></i>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="pf-c-pagination__nav-control pf-m-next">
|
|
|
|
<a class="pf-c-button pf-m-plain"
|
|
|
|
{% if page_obj.has_next %}
|
2020-11-21 19:59:20 +00:00
|
|
|
href="{{ request.path }}?{% query_transform page=page_obj.next_page_number %}"
|
2020-10-03 15:50:17 +00:00
|
|
|
{% else %}
|
|
|
|
disabled
|
|
|
|
{% endif %}
|
|
|
|
aria-label="{% trans 'Go to next page' %}">
|
|
|
|
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
</div>
|
2020-06-09 11:40:03 +00:00
|
|
|
</div>
|
2018-12-14 09:28:37 +00:00
|
|
|
</div>
|