{% if page_numbers %} {% load i18n %}

{% trans "Showing Items" %} {{ first_this_page }}-{{ last_this_page }} {% trans "of" %} {{ hits }} {% trans "on page" %} {{ page }} {% trans "of" %} {{ pages }}: {% if show_first %} {% if searchterm %}{% trans "First" %}{% else %}{% trans "First" %}{% endif %} {% endif %} {% if has_previous %} {% if searchterm %}{% trans "Previous" %}{% else %}{% trans "Previous" %}{% endif %} {% endif %} {% for pg in page_numbers %} {% ifequal pg page %} {{ pg }} {% else %} {% if searchterm %} {{ pg }} {% else %} {{ pg }} {% endif %} {% endifequal %} {% endfor %} {% if has_next %} {% if searchterm %}{% trans "Next" %} {% else %}{% trans "Next" %} {% endif %} {% endif %} {% if show_last %} {% if searchterm %}{% trans "Last" %}{% else %}{% trans "Last" %}{% endif %} {% endif %}

{% endif %}