{% load i18n %} {% load webcatalog %}
{% blocktrans with start_index=page.start_index end_index=page.end_index count=page.paginator.count %}

Displaying items {{ start_index }} to {{ end_index }} of {{ count }}

{% endblocktrans %} {% if page.has_other_pages %}

{% if page.has_previous %} {% trans "Prev" %} {% endif %} {% for i in page|visible_page_range %} {% ifequal i page.number %} {{i}} {% else %} {{ i }} {% endifequal %} {% endfor %} {% if page.has_next %} {% trans "Next" %} {% endif %}

{% endif %}