{% load i18n %} {% if cl.paginator.num_pages > 1 %}
{% if cl.paginator.page_range|length > 10 %} {% if cl.page_num > 5 %} {% trans "First" %} {% endif %} {% endif %} {% for page_num in cl.paginator.page_range %} {% if page_num == cl.page_num %} {{ page_num }} {% elif page_num > cl.page_num|add:"-5" and page_num < cl.page_num|add:"5" %} {{ page_num }} {% endif %} {% endfor %} {% if cl.paginator.page_range|length > 10 %} {% if cl.page_num < cl.paginator.num_pages|add:"-5" %} {% trans "Last" %} {% endif %} {% endif %} {% blocktrans with cl.result_count as total_count %}Showing {{ cl.page_num }} of {{ total_count }} results{% endblocktrans %}
{% endif %}