summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbnewbold <bnewbold@archive.org>2020-06-17 21:53:11 +0000
committerbnewbold <bnewbold@archive.org>2020-06-17 21:53:11 +0000
commit2175857844faddef4511f47126a93218066e7de3 (patch)
tree010d95520d33a7c5d51cdd6d7582c769046e3637
parent9dca5a8348f2ab34a013b25f3dae07c1f8db2c19 (diff)
parentb2b9c40c6bd26d7585207fedc091d84935a67b5f (diff)
downloadfatcat-2175857844faddef4511f47126a93218066e7de3.tar.gz
fatcat-2175857844faddef4511f47126a93218066e7de3.zip
Merge branch 'martin-fulltext-checkbox-label' into 'master'
make fulltext-only label clickable See merge request webgroup/fatcat!58
-rw-r--r--python/fatcat_web/templates/release_search.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/fatcat_web/templates/release_search.html b/python/fatcat_web/templates/release_search.html
index 70c46c0a..a600f1b2 100644
--- a/python/fatcat_web/templates/release_search.html
+++ b/python/fatcat_web/templates/release_search.html
@@ -22,8 +22,8 @@
<button class="ui primary button">Search</button>
</div>
<div class="ui checkbox" style="float: right; margin: 1em;">
- <input type="checkbox" name="fulltext_only" value="true" {% if fulltext_only %}checked{% endif %}>
- <label>Fulltext Available Only</label>
+ <input type="checkbox" name="fulltext_only" id="fulltext_only" value="true" {% if fulltext_only %}checked{% endif %}>
+ <label for="fulltext_only">Fulltext Available Only</label>
</div>
<br>Can also lookup by <b><a href="/release/lookup">identifier</a></b> or search for <b><a href="/container/search?q={{ query or "" }}">containers</a></b> (eg, journals).
</div>