{% load common_tags %} {% if is_paginated %}
Showing {{ page_obj.start_index }} to {{ page_obj.end_index }} of {{ paginator.count }} entries
    {% if page_obj.has_previous %} {% endif %} {% for page in paginator.num_pages|pagination_range:page_obj.number %} {% if page == page_obj.number %}
  • {% else %}
  • {% endif %} {{ page }}
  • {% endfor %} {% if page_obj.has_next %} {% endif %}
{% endif %}