diff options
| author | Bryan Newbold <bnewbold@robocracy.org> | 2019-02-20 19:58:29 -0800 | 
|---|---|---|
| committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-02-20 19:58:29 -0800 | 
| commit | 46e67e77cf7709dae7375a22a6fed1ac730355bf (patch) | |
| tree | ea8ae53d57d3dc2e9cb2c6c0efa5359ef9f8d773 /python/fatcat_web/templates | |
| parent | 7c04b83a6612b7a0c87afe4a1ed4bbb65568fea1 (diff) | |
| download | fatcat-46e67e77cf7709dae7375a22a6fed1ac730355bf.tar.gz fatcat-46e67e77cf7709dae7375a22a6fed1ac730355bf.zip | |
refactor entity searches
Diffstat (limited to 'python/fatcat_web/templates')
| -rw-r--r-- | python/fatcat_web/templates/container_search.html | 4 | ||||
| -rw-r--r-- | python/fatcat_web/templates/release_search.html | 4 | 
2 files changed, 8 insertions, 0 deletions
| diff --git a/python/fatcat_web/templates/container_search.html b/python/fatcat_web/templates/container_search.html index 9fc7aa98..925fbc64 100644 --- a/python/fatcat_web/templates/container_search.html +++ b/python/fatcat_web/templates/container_search.html @@ -33,6 +33,10 @@    {% endif %}  </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> +{% endif %}  {% else %}  <div class="featurette-inner text-center" style="padding-top: 15%;">    <h3>No results found!</h3> diff --git a/python/fatcat_web/templates/release_search.html b/python/fatcat_web/templates/release_search.html index 961bf54f..a7dc3c80 100644 --- a/python/fatcat_web/templates/release_search.html +++ b/python/fatcat_web/templates/release_search.html @@ -46,6 +46,10 @@    {% endif %}  </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> +{% endif %}  {% else %}  <div class="featurette-inner text-center" style="padding-top: 15%;">    <h3>No results found!</h3> | 
