fixing template to show proper url
authorMike TUMS <mktums@gmail.com>
Mon, 7 Apr 2014 09:21:27 +0000 (13:21 +0400)
committerMike TUMS <mktums@gmail.com>
Mon, 7 Apr 2014 09:21:27 +0000 (13:21 +0400)
linaro_django_pagination/templates/pagination/pagination.html

index 1e375b6..95b85ca 100644 (file)
@@ -3,8 +3,8 @@
 <div class="pagination">
   {% block previouslink %}
   {% if page_obj.has_previous %}
-  {% if display_link_for_first_page and page_obj.previous_page_number == 1 %}
-  <a href="{{ getvars }}" class="prev">{{ previous_link_decorator|safe }}{% trans "previous" %}</a>
+  {% if disable_link_for_first_page and page_obj.previous_page_number == 1 %}
+  <a href="{{ request.path }}{{ getvars }}" class="prev">{{ previous_link_decorator|safe }}{% trans "previous" %}</a>
   {% else %}
   <a href="?page{{ page_suffix }}={{ page_obj.previous_page_number }}{{ getvars }}" class="prev">{{ previous_link_decorator|safe }}{% trans "previous" %}</a>
   {% endif %}
@@ -22,7 +22,7 @@
   <span class="current page">{{ page }}</span>
   {% else %}
   {% if disable_link_for_first_page and page == 1 %}
-  <a href="{{ getvars }}" class="page">{{ page }}</a>
+  <a href="{{ request.path }}{{ getvars }}" class="page">{{ page }}</a>
   {% else %}
   <a href="?page{{ page_suffix }}={{ page }}{{ getvars }}" class="page">{{ page }}</a>
   {% endif %}