{% load i18n %} {% if paginator.num_pages > 1 %}

{% blocktrans with start=page_obj.start_index end=page_obj.end_index count=page_obj.paginator.count %}Showing {{ start }}-{{ end }} of total result {{ count }}{% endblocktrans %}

    {% if page_obj.has_previous %} {% else %} {% endif %} {% for page_num in paginator.get_elided_page_range %} {% if page_number == page_obj.paginator.ELLIPSIS %}
  • {{ page_num }}
  • {% else %}
  • {{ page_num }}
  • {% endif %} {% endfor %} {% if page_obj.has_next %} {% else %} {% endif %}
{% endif %}