diff options
Diffstat (limited to 'python/fatcat_web/templates/container_search.html')
| -rw-r--r-- | python/fatcat_web/templates/container_search.html | 10 | 
1 files changed, 7 insertions, 3 deletions
| diff --git a/python/fatcat_web/templates/container_search.html b/python/fatcat_web/templates/container_search.html index 7f6799dd..48c613f8 100644 --- a/python/fatcat_web/templates/container_search.html +++ b/python/fatcat_web/templates/container_search.html @@ -1,3 +1,4 @@ +{% import "entity_macros.html" as entity_macros %}  {% extends "base.html" %}  {% block title %} @@ -30,7 +31,8 @@  {% if found %}  {% if found.results %} -  <i>Showing top {{ found.count_returned }} out of {{ found.count_found }} results for: <code>{{ found.query.q }}</code></i> +  {{ entity_macros.top_results(found) }} +  {% for entity in found.results %}  <div>    <h4 style="margin-top: 1em; margin-bottom: 4px; font-size: 1.1em;"> @@ -49,8 +51,10 @@  </div>  {% endfor %}  {% if found.results|length > 8 %} -  <br> -  <i>Showing top {{ found.count_returned }} out of {{ found.count_found }} results for: <code>{{ found.query.q }}</code></i> +  <div class="ui divider"></div> +  <div style="text-align: center"> +  {{ entity_macros.bottom_results(found)}} +  </div>  {% endif %}  {% else %} | 
