{% if is_paginated %} {% load i18n %}
{% block previouslink %} {% if page_obj.has_previous %}
{{ previous_link_decorator|safe }}{% trans "previous" %}
{% else %} {% if display_disabled_previous_link %}
{{ previous_link_decorator|safe }}{% trans "previous" %}
{% endif %} {% endif %} {% endblock previouslink %} {% block pagelinks %} {% if display_page_links %} {% for page in pages %} {% if page %} {% ifequal page page_obj.number %}
{{ page }}
{% else %}
{{ page }}
{% endifequal %} {% else %} ... {% endif %} {% endfor %} {% endif %} {% endblock pagelinks %} {% block nextlink %} {% if page_obj.has_next %}
{% trans "next" %}{{ next_link_decorator|safe }}
{% else %} {% if display_disabled_next_link %}
{% trans "next" %}{{ next_link_decorator|safe }}
{% endif %} {% endif %} {% endblock nextlink %}
{% endif %}