{% load i18n %}
{% if page_obj.paginator.num_pages > 1 %}
{# --- First page --- #}
{% if not show_first_and_last %}
{% if use_icons %}
{% else %}
{% trans "First" %}
{% endif %}
{% endif %}
{# --- Previous page --- #}
{% if use_icons %}
{% else %}
{% trans "Previous" %}
{% endif %}
{% with "-"|add:page_window as negative_window %}
{% for num in page_obj.paginator.page_range %}
{% if forloop.first or forloop.last and show_first_and_last %}
{% elif num >= page_obj.number|add:negative_window and num <= page_obj.number|add:page_window %}
{% elif num == page_obj.number|add:negative_window|add:"-1" or num == page_obj.number|add:page_window|add:"1" %}
{% endif %}
{% endfor %}
{% endwith %}
{# --- Next page --- #}
{% if use_icons %}
{% else %}
{% trans "Next" %}
{% endif %}
{% if not show_first_and_last %}
{# --- Last page --- #}
{% if use_icons %}
{% else %}
{% trans "Last" %}
{% endif %}
{% endif %}
{% endif %}