diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2020-01-18 00:58:12 +0100 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2020-01-18 13:31:22 +0100 |
commit | e251400af21d9457fcf9c5cd0d15c20424fbb40b (patch) | |
tree | 235e42c134ede58f607e37074c533e56180eeae0 /python/fatcat_web/templates/entity_macros.html | |
parent | 689da76d1c759d6368d760b4a1fa942e16095a40 (diff) | |
download | fatcat-e251400af21d9457fcf9c5cd0d15c20424fbb40b.tar.gz fatcat-e251400af21d9457fcf9c5cd0d15c20424fbb40b.zip |
pagination: use correct endpoint in navigation
Diffstat (limited to 'python/fatcat_web/templates/entity_macros.html')
-rw-r--r-- | python/fatcat_web/templates/entity_macros.html | 10 |
1 files changed, 5 insertions, 5 deletions
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 </i> @@ -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 %} - <a href="{{ url_for('release_search', q=found.query.q, offset=0) }}">« Previous</a> + <a href="{{ url_for(endpoint, q=found.query.q, offset=0) }}">« Previous</a> {% else %} - <a href="{{ url_for('release_search', q=found.query.q, offset=found.offset - found.limit) }}">« Previous</a> + <a href="{{ url_for(endpoint, q=found.query.q, offset=found.offset - found.limit) }}">« Previous</a> {% endif %} {% else %} <span style="color:gray">« Previous</span> @@ -266,7 +266,7 @@ yellow found.count_returned }} out of {{ found.count_found }} results</i> {% if found.offset + found.limit < found.count_found and found.offset + found.limit < found.deep_page_limit %} - <a href="{{ url_for('release_search', q=found.query.q, offset=found.offset + found.limit) }}">Next »</a> + <a href="{{ url_for(endpoint, q=found.query.q, offset=found.offset + found.limit) }}">Next »</a> {% else %} <span style="color:gray">Next »</span> {% endif %} |