From e251400af21d9457fcf9c5cd0d15c20424fbb40b Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Sat, 18 Jan 2020 00:58:12 +0100 Subject: pagination: use correct endpoint in navigation --- python/fatcat_web/templates/container_search.html | 2 +- python/fatcat_web/templates/entity_macros.html | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'python/fatcat_web/templates') diff --git a/python/fatcat_web/templates/container_search.html b/python/fatcat_web/templates/container_search.html index 48c613f8..1a089643 100644 --- a/python/fatcat_web/templates/container_search.html +++ b/python/fatcat_web/templates/container_search.html @@ -53,7 +53,7 @@ {% if found.results|length > 8 %}
- {{ entity_macros.bottom_results(found)}} + {{ entity_macros.bottom_results(found, endpoint='container_search')}}
{% endif %} {% else %} diff --git a/python/fatcat_web/templates/entity_macros.html b/python/fatcat_web/templates/entity_macros.html index df26a738..7c5436c6 100644 --- a/python/fatcat_web/templates/entity_macros.html +++ b/python/fatcat_web/templates/entity_macros.html @@ -242,7 +242,7 @@ yellow {% else %} results {{ found.offset }} — {% endif %} - + {{ found.offset + found.count_returned }} out of {{ found.count_found }} results @@ -250,13 +250,13 @@ yellow {%- endmacro %} -{% macro bottom_results(found) -%} +{% macro bottom_results(found, endpoint='release_search') -%} {% if found.offset > 0 %} {% if found.offset - found.limit < 0 %} - « Previous + « Previous {% else %} - « Previous + « Previous {% endif %} {% else %} « Previous @@ -266,7 +266,7 @@ yellow found.count_returned }} out of {{ found.count_found }} results   {% if found.offset + found.limit < found.count_found and found.offset + found.limit < found.deep_page_limit %} - Next » + Next » {% else %} Next » {% endif %} -- cgit v1.2.3