diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-02-26 12:15:40 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-02-26 12:15:40 -0800 |
commit | b56f69e94c899761c144cdbb78170f3622af7d0b (patch) | |
tree | afe5fc5a794808dd3d243eee6e75eb901b249f12 | |
parent | d69da65048d3c9961109567d9ce8e1a960a80aa5 (diff) | |
download | fatcat-b56f69e94c899761c144cdbb78170f3622af7d0b.tar.gz fatcat-b56f69e94c899761c144cdbb78170f3622af7d0b.zip |
web: fix container search
-rw-r--r-- | python/fatcat_web/templates/container_search.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/fatcat_web/templates/container_search.html b/python/fatcat_web/templates/container_search.html index 0c7823b1..ec25fa8d 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 %} {% import "search_macros.html" as search_macros %} {% extends "base.html" %} @@ -18,7 +19,7 @@ <form class="" role="search" action="/container/search" method="get"> <div class="ui form"> <div class="ui action input huge fluid"> - <input type="text" placeholder="Query..." name="q" value="{% if query.q %}{{ query.q }}{% endif %}" aria-label="search container metadata"> <button class="ui button">Search</button> + <input type="text" placeholder="Query..." name="q" value="{% if query.q %}{{ query.q }}{% endif %}" aria-label="search container metadata"> <button class="ui primary button">Search</button> </div> <br>Can also lookup by <b><a href="/container/lookup">identifier</a></b> or search <b><a href="/release/search?q={{ query.q or "" }}">releases</a></b>. </div> |