{% if list.paginator.num_pages > 1 %}
{% if list.number > 1 %} {% if tag %} First {% else %} First {% endif %} {% endif %} {% if list.has_previous and list.number != 2 %} {% if tag %} Previous {% else %} Previous {% endif %} {% endif %} {% for i in posts.paginator.page_range %} {% if tag %} {% if list.number != i %}{% endif %}{{ i }}{% if list.number != i %}{% endif %} {% else %} {% if list.number != i %}{% endif %}{{ i }}{% if list.number != i %}{% endif %} {% endif %} {% endfor %} {% if list.has_next and list.number != list.paginator.num_pages|add:-1 %} {% if tag %} Next {% else %} Next {% endif %} {% endif %} {% if list.number < list.paginator.num_pages %} {% if tag %} Last {% else %} Last {% endif %} {% endif %}
{% endif %}