aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/container_view.html
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2022-02-09 00:24:46 -0800
committerBryan Newbold <bnewbold@robocracy.org>2022-02-09 17:35:50 -0800
commit5bc77c47eed20676cd3db162c9675311f77c6cf9 (patch)
tree7769bc192aa1a51d893675e06629018cb0b09c7a /python/fatcat_web/templates/container_view.html
parent9ab3cd54aa039393d294cdc85871353651c35576 (diff)
downloadfatcat-5bc77c47eed20676cd3db162c9675311f77c6cf9.tar.gz
fatcat-5bc77c47eed20676cd3db162c9675311f77c6cf9.zip
web: move search-in-container to dedicated tab
Diffstat (limited to 'python/fatcat_web/templates/container_view.html')
-rw-r--r--python/fatcat_web/templates/container_view.html5
1 files changed, 2 insertions, 3 deletions
diff --git a/python/fatcat_web/templates/container_view.html b/python/fatcat_web/templates/container_view.html
index d88b44ab..abb31e06 100644
--- a/python/fatcat_web/templates/container_view.html
+++ b/python/fatcat_web/templates/container_view.html
@@ -24,12 +24,11 @@
{% endif %}
{% if container.state == "active" %}
-<h3>Search Releases from this Container</h3>
-<form class="" role="search" action="/release/search" method="get">
+<h3>Search Content</h3>
+<form class="" role="search" action="/container/{{ container.ident }}/search" method="get">
<div class="ui form">
<div class="ui action input large fluid">
<input type="text" placeholder="Search Articles..." name="q" aria-label="search release metadata">
- <input type="hidden" name="container_id" value="{{ container.ident }}">
<button class="ui button">Search</button>
</div>
</div>