{% macro pagination(request, page) %} {% with start_index = page.start_index, end_index = page.end_index, total_rows = page.total_rows %}
{% trans %}Showing {{ start_index }} - {{ end_index }} of {{ total_rows }} results.{% endtrans %}
{% if page.total_pages > 1 %} {% endif %}
{% endwith %} {% endmacro %}