2018-12-14 09:28:37 +00:00
|
|
|
{% load i18n %}
|
|
|
|
|
2020-06-09 11:40:03 +00:00
|
|
|
<div class="pf-c-toolbar__item pf-m-pagination">
|
|
|
|
<div class="pf-c-pagination">
|
|
|
|
<div class="pf-c-pagination__total-items">
|
|
|
|
<b>{{ page_obj.start_index }} - {{ page_obj.end_index }}</b>of
|
|
|
|
<b>{{ page_obj.count }}</b>
|
2020-02-21 13:20:16 +00:00
|
|
|
</div>
|
2020-06-09 11:40:03 +00:00
|
|
|
{% with param=get_param|default:'page' %}
|
|
|
|
<nav class="pf-c-pagination__nav" aria-label="Pagination">
|
|
|
|
<a class="pf-c-button pf-m-plain" type="button" aria-label="Go to first page" href="?{{ param }}=1">
|
|
|
|
<i class="fas fa-angle-double-left" aria-hidden="true"></i>
|
|
|
|
</a>
|
|
|
|
<a class="pf-c-button pf-m-plain" type="button" aria-label="Go to previous page"
|
|
|
|
{% if page_obj.has_previous %}
|
|
|
|
href="?{{ param }}={{ page_obj.previous_page_number }}"
|
|
|
|
{% else %}
|
|
|
|
disabled
|
|
|
|
{% endif %}>
|
|
|
|
<i class="fas fa-angle-left" aria-hidden="true"></i>
|
|
|
|
</a>
|
|
|
|
<div class="pf-c-pagination__nav-page-select">
|
|
|
|
<span>
|
|
|
|
{% blocktrans with current=page_obj.number total=page_obj.paginator.num_pages %}
|
|
|
|
{{ current }} of {{ total }}
|
|
|
|
{% endblocktrans %}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<a class="pf-c-button pf-m-plain" type="button" aria-label="Go to next page"
|
|
|
|
{% if page_obj.has_next %}
|
|
|
|
href="?{{ param }}={{ page_obj.next_page_number }}"
|
|
|
|
{% else %}
|
|
|
|
disabled
|
|
|
|
{% endif %}>
|
|
|
|
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
|
|
</a>
|
|
|
|
<a class="pf-c-button pf-m-plain" type="button" aria-label="Go to last page" href="?{{ param }}={{ page_obj.num_pages }}">
|
|
|
|
<i class="fas fa-angle-double-right" aria-hidden="true"></i>
|
|
|
|
</a>
|
|
|
|
</nav>
|
|
|
|
{% endwith %}
|
|
|
|
</div>
|
2018-12-14 09:28:37 +00:00
|
|
|
</div>
|