{% with items.number|add:"-3" as page_start %}
{% with items.number|add:"3" as page_end %}
{% with items.paginator.num_pages as total_pages %}
{% for i in items.paginator.page_range %}
{% if i >= page_start and i <= page_end or i == 1 or i == total_pages %}
{% if items.number == i %}
{{ i }}
{% else %}
{{ i }}
{% endif %}
{% elif i == page_start|add:"-1" or i == page_end|add:"1" %}
...
{% endif %}
{% endfor %}
{% endwith %}
{% endwith %}
{% endwith %}
{% if items.has_next %}
{% else %}
{% endif %}
{% if items.has_next %}