diff options
Diffstat (limited to 'hyperkitty/templates/paginator.html')
-rw-r--r-- | hyperkitty/templates/paginator.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hyperkitty/templates/paginator.html b/hyperkitty/templates/paginator.html index a7559ec..358ae5d 100644 --- a/hyperkitty/templates/paginator.html +++ b/hyperkitty/templates/paginator.html @@ -2,7 +2,7 @@ <ul class="pager"> {% if pager.has_previous %} <li> - <a href="?page={{ pager.previous_page_number }}"> + <a href="?{{ page_key|default:'page' }}={{ pager.previous_page_number }}"> {% else %} <li class="disabled"> <a href="#"> @@ -12,7 +12,7 @@ {% if pager.has_next %} <li> - <a href="?page={{ pager.next_page_number }}"> + <a href="?{{ page_key|default:'page' }}={{ pager.next_page_number }}"> {% else %} <li class="disabled"> <a href="#"> |