{% load i18n %} {% if pagination.total_pages > 1 %}
{% if pagination.first_page %} {% trans "First page" %} {% endif %} {% if pagination.has_prev %} {% trans "Previous page" %} {% endif %} {% for p in pagination.page_range %} {% if p == pagination.current_page %} {{ p }} {% else %} {{ p }} {% endif %} {% endfor %} {% if pagination.has_next %} {% trans "Next page" %} {% endif %} {% if pagination.last_page %} {% trans "Last page" %} {% endif %} {% blocktrans count counter=amount_of_products %} ({{ amount_of_products }} product) {% plural %} ({{ amount_of_products }} products) {% endblocktrans %}
{% endif %}