diff options
| -rw-r--r-- | python/fatcat_web/templates/entity_macros.html | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/python/fatcat_web/templates/entity_macros.html b/python/fatcat_web/templates/entity_macros.html index 5e980fec..390327bc 100644 --- a/python/fatcat_web/templates/entity_macros.html +++ b/python/fatcat_web/templates/entity_macros.html @@ -259,7 +259,7 @@ yellow      <a href="{{ url_for('release_search', q=found.query.q, offset=found.offset - found.limit) }}">« Previous</a>    {% endif %}  {% else %} -  « Previous +  <span style="color:gray">« Previous</span>  {% endif %}    <i>Showing results {{ found.offset }} — {{ found.offset + @@ -268,7 +268,7 @@ 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>    {% else %} -  Next » +  <span style="color:gray">Next »</span>  {% endif %}  </div> | 
