From 5e8b34098a430d6bbd234f1cb907be91b5421cde Mon Sep 17 00:00:00 2001 From: Mike TUMS Date: Wed, 14 May 2014 15:18:09 +0400 Subject: [PATCH] =?utf8?q?I'm=20terribly=20sorry=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit fixes a bug caused by my previous PR (#24) and hardcoded generation of `getvars` variable. bug description: when `disable_link_for_first_page` is true, for first page's link there was no replacing of "&" to "?" for first GET parameter, so there was 404. i didn't rewrote `getvars` generation, thus i avoid increasing of complexity. i'll rewrote it later, if i'll be allowed to do so. --- linaro_django_pagination/templates/pagination/pagination.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linaro_django_pagination/templates/pagination/pagination.html b/linaro_django_pagination/templates/pagination/pagination.html index 95b85ca..ea01b61 100644 --- a/linaro_django_pagination/templates/pagination/pagination.html +++ b/linaro_django_pagination/templates/pagination/pagination.html @@ -4,7 +4,7 @@ {% block previouslink %} {% if page_obj.has_previous %} {% if disable_link_for_first_page and page_obj.previous_page_number == 1 %} - + {% else %} {% endif %} @@ -22,7 +22,7 @@ {{ page }} {% else %} {% if disable_link_for_first_page and page == 1 %} - {{ page }} + {{ page }} {% else %} {{ page }} {% endif %} -- 2.20.1