From c538d614819fff471cff821adfa302b563c87a2f Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 3 Oct 2018 14:17:50 -0700 Subject: improve search UI --- python/fatcat/templates/release_search.html | 40 +++++++++++++++++++---------- 1 file changed, 27 insertions(+), 13 deletions(-) (limited to 'python/fatcat/templates/release_search.html') diff --git a/python/fatcat/templates/release_search.html b/python/fatcat/templates/release_search.html index 800d550e..c57ad149 100644 --- a/python/fatcat/templates/release_search.html +++ b/python/fatcat/templates/release_search.html @@ -1,9 +1,25 @@ {% extends "base.html" %} {% block body %} +

Article Search

+
+
+
+ + +
+
+ + +
+
+
+ +
+ {% if found %} -

Search Results

-Showing top {{ found.count_returned }} out of {{ found.count_found }} results for: {{ found.query.q }} +{% if found.results %} + Showing top {{ found.count_returned }} out of {{ found.count_found }} results for: {{ found.query.q }} {% for paper in found.results %}

{{ paper['title'] }} @@ -29,22 +45,20 @@ {% if paper.container_is_oa %}{% endif %} {% endif %}

+{% endfor %} {% else %} -
-

Try:

- {% endif %} +{% endif %} {% endblock %} -- cgit v1.2.3