{% if has_previous %}
← Prev
{% else %}
← Prev
{% endif %}
{% for num in page_range %}
{% if page_num == num %}
{{ num }}
{% elif num > page_num|add:"-3" and num < page_num|add:"3" or num == 1 or num == num_pages %}
{{ num }}
{% elif num == page_num|add:"-3" or num == page_num|add:"3" %}
…
{% endif %}
{% endfor %}
{% if has_next %}
Next →
{% else %}
Next →
{% endif %}