New settings for basic pagination customization, backwards compatible:
[django-pagination.git] / pagination / templates / pagination / pagination.html
index 631075a..8dd3679 100644 (file)
@@ -1,7 +1,32 @@
 {% if is_paginated %}
+{% load i18n %}
 <div class="pagination">
-    {% if page_obj.has_previous %}<a href="?page={{ page_obj.previous_page_number }}" class="prev">&lsaquo;&lsaquo; previous</a> {% else %}<span class="disabled prev">&lsaquo;&lsaquo; previous</span> {% endif %}
-    {% for page in pages %}{% if page %}{% ifequal page page_obj.number %}<span class="current page">{{ page }}</span> {% else %}<a href="?page={{ page }}" class="page">{{ page }}</a> {% endifequal %}{% else %} ... {% endif %}{% endfor %}
-    {% if page_obj.has_next %}<a href="?page={{ page_obj.next_page_number }}" class="next">next &rsaquo;&rsaquo;</a>{% else %}<span class="disabled next">next &rsaquo;&rsaquo;</span>{% endif %}
+    {% if page_obj.has_previous %}
+        <a href="?page={{ page_obj.previous_page_number }}{{ getvars }}{{ hashtag }}" class="prev">{{ previous_link_decorator }}{% trans "previous" %}</a>
+    {% else %}
+        {% if display_disabled_previous_link %}
+            <span class="disabled prev">{{ previous_link_decorator }}{% trans "previous" %}</span>    
+        {% endif %}
+    {% endif %}
+    {% if display_page_links %}
+        {% for page in pages %}
+            {% if page %}
+                {% ifequal page page_obj.number %}
+                    <span class="current page">{{ page }}</span>
+                {% else %}
+                    <a href="?page={{ page }}{{ getvars }}{{ hashtag }}" class="page">{{ page }}</a>
+                {% endifequal %}
+            {% else %}
+                ...
+            {% endif %}
+        {% endfor %}        
+    {% endif %}
+    {% if page_obj.has_next %}
+        <a href="?page={{ page_obj.next_page_number }}{{ getvars }}{{ hashtag }}" class="next">{% trans "next" %}{{ next_link_decorator }}</a>
+    {% else %}
+        {% if display_disabled_next_link %}
+            <span class="disabled next">{% trans "next" %}{{ next_link_decorator }}</span>
+        {% endif %}
+    {% endif %}
 </div>
 {% endif %}
\ No newline at end of file