{% load i18n %} {% load static %} {% load paginated_inline %}
{% with inline_admin_formset.formset.page as page_obj %}

{% if page_obj.has_previous %} {% translate 'previous' %} {% endif %} {% if page_obj.number|add:"-5" > 0 %} 1 {% endif %} {% if page_obj.number|add:"-5" > 1 %} {% endif %} {% for page_num in page_obj.paginator.page_range %} {% if page_obj.number == page_num %} {{ page_num }} {% else %} {% if page_num > page_obj.number|add:"-5" and page_num < page_obj.number|add:"5" %} {{ page_num }} {% endif %} {% endif %} {% endfor %} {% if page_obj.number|add:"5" < page_obj.paginator.num_pages %} {% endif %} {% if page_obj.number|add:"4" < page_obj.paginator.num_pages %} {{ page_obj.paginator.num_pages }} {% endif %} {% if page_obj.has_next %} {% translate 'next' %} {% endif %} {{ page_obj.paginator.count }} {% translate 'Results' %}

{% endwith %}