{% load i18n %}
{% if page.has_previous %} {% ifnotequal page.previous_page_number 1 %} {% trans "First" %} {% endifnotequal %} {% trans "Previous" %} {% if page.previous_pages %} {% for page_number in page.previous_pages %} {{ page_number }} {% endfor %} {% endif %} {% endif %} {% if page.paginator.num_pages > 1 %} {{ page.number }} {% endif %} {% if page.has_next %} {% if page.next_pages %} {% for page_number in page.next_pages %} {{ page_number }} {% endfor %} {% endif %} {% trans "Next" %} {% ifnotequal page.next_page_number page.paginator.num_pages %} {% trans "Last" %} {% endifnotequal %} {% endif %} {% if page.paginator.num_pages > 1 %} {% trans "Jump to" %}   {% endif %}

{% blocktrans with start_index=page.start_index end_index=page.end_index count=page.paginator.count %} Found {{ count }} entries. Showing {{ start_index }} to {{ end_index }}. {% endblocktrans %}