diff options
Diffstat (limited to 'python/fatcat_web')
| -rw-r--r-- | python/fatcat_web/templates/container_search.html | 2 | ||||
| -rw-r--r-- | python/fatcat_web/templates/entity_macros.html | 10 | 
2 files changed, 6 insertions, 6 deletions
| 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 %}    <div class="ui divider"></div>    <div style="text-align: center"> -  {{ entity_macros.bottom_results(found)}} +  {{ entity_macros.bottom_results(found, endpoint='container_search')}}    </div>  {% 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  </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 %} | 
