{% load i18n %}
{% blocktrans %}
{{ first_this_page }}-{{ last_this_page}} of {{ hits }} on page {{ page }} / {{ pages }}
{% endblocktrans %}
{% if show_first %}
1
{% endif %}
{% for p in page_numbers %}
{% ifequal p page %}{{ p }}{% else %}{{ p }}{% endifequal %}
{% if not forloop.last %} |{% endif %}
{% endfor %}
{% if show_last %}
{{ pages }}
{% endif %}