diff options
author | bnewbold <bnewbold@archive.org> | 2022-03-10 00:08:11 +0000 |
---|---|---|
committer | bnewbold <bnewbold@archive.org> | 2022-03-10 00:08:11 +0000 |
commit | e4cbe43692a9c26911ea54ee88d7df0980e1d9fe (patch) | |
tree | 66090d73714ed043bf6eec608aebe136704320c7 /python/fatcat_web/templates/container_search.html | |
parent | 72e3825893ae614fcd6c6ae8a513745bfefe36b2 (diff) | |
parent | f9b69d0b4343403ecf9318dc6d66725f6144edad (diff) | |
download | fatcat-e4cbe43692a9c26911ea54ee88d7df0980e1d9fe.tar.gz fatcat-e4cbe43692a9c26911ea54ee88d7df0980e1d9fe.zip |
Merge branch 'bnewbold-container-web' into 'master'
container web interface improvements
See merge request webgroup/fatcat!140
Diffstat (limited to 'python/fatcat_web/templates/container_search.html')
-rw-r--r-- | python/fatcat_web/templates/container_search.html | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/python/fatcat_web/templates/container_search.html b/python/fatcat_web/templates/container_search.html index 0eeed55e..0031a0a8 100644 --- a/python/fatcat_web/templates/container_search.html +++ b/python/fatcat_web/templates/container_search.html @@ -33,10 +33,16 @@ {% if found %} {% if found.results %} - {{ search_macros.top_results(query, found) }} + <div> + <div class="mobile-hide" style="float: right; margin-left: 0.5em; margin-top:0px; width: 150px; text-align: right;"> + <i>Content Status</i> + </div> + {{ search_macros.top_results(query, found) }} + </div> + <br clear="all"> {% for entity in found.results %} - {{ entity_macros.container_search_result_row(entity) }} + {{ entity_macros.container_search_result_row(entity, show_stats=True) }} {% endfor %} {% if found.results|length > 8 %} |