ea01b616bb7204eccf120f266a398d3df165aa8f
[django-pagination.git] / linaro_django_pagination / templates / pagination / pagination.html
1 {% if is_paginated %}
2 {% load i18n %}
3 <div class="pagination">
4   {% block previouslink %}
5   {% if page_obj.has_previous %}
6   {% if disable_link_for_first_page and page_obj.previous_page_number == 1 %}
7   <a href="{{ request.path }}{% if getvars %}?{{ getvars|slice:"1:" }}{% endif %}" class="prev">{{ previous_link_decorator|safe }}{% trans "previous" %}</a>
8   {% else %}
9   <a href="?page{{ page_suffix }}={{ page_obj.previous_page_number }}{{ getvars }}" class="prev">{{ previous_link_decorator|safe }}{% trans "previous" %}</a>
10   {% endif %}
11   {% else %}
12   {% if display_disabled_previous_link %}
13   <span class="disabled prev">{{ previous_link_decorator|safe }}{% trans "previous" %}</span>
14   {% endif %}
15   {% endif %}
16   {% endblock previouslink %}
17   {% block pagelinks %}
18   {% if display_page_links %}
19   {% for page in pages %}
20   {% if page %}
21   {% ifequal page page_obj.number %}
22   <span class="current page">{{ page }}</span>
23   {% else %}
24   {% if disable_link_for_first_page and page == 1 %}
25   <a href="{{ request.path }}{% if getvars %}?{{ getvars|slice:"1:" }}{% endif %}" class="page">{{ page }}</a>
26   {% else %}
27   <a href="?page{{ page_suffix }}={{ page }}{{ getvars }}" class="page">{{ page }}</a>
28   {% endif %}
29   {% endifequal %}
30   {% else %}
31   ...
32   {% endif %}
33   {% endfor %}
34   {% endif %}
35   {% endblock pagelinks %}
36   {% block nextlink %}
37   {% if page_obj.has_next %}
38   <a href="?page{{ page_suffix }}={{ page_obj.next_page_number }}{{ getvars }}" class="next">{% trans "next" %}{{ next_link_decorator|safe }}</a>
39   {% else %}
40   {% if display_disabled_next_link %}
41   <span class="disabled next">{% trans "next" %}{{ next_link_decorator|safe }}</span>
42   {% endif %}
43   {% endif %}
44   {% endblock nextlink %}
45 </div>
46 {% endif %}