Update web/templates/search.html

This commit is contained in:
Joshua Laymon 2025-08-14 16:15:14 +00:00
parent 26ab9830e0
commit f0cf33a18c

View File

@ -78,16 +78,7 @@
<button class="btn btn-primary">Search</button>
</div>
<div class="filter-row">
{% for f in field_options %}
<label class="check-pill">
<input type="checkbox" name="{{ f.name }}" {% if f.checked %}checked{% endif %}>
<span>{{ f.label }}</span>
</label>
{% endfor %}
</div>
<!-- Test Help Dropdown -->
<!-- Test Help Dropdown -->
<div class="search-help">
<button class="help-toggle" type="button" onclick="this.nextElementSibling.classList.toggle('open')">
❓ Instructions for Use
@ -117,6 +108,15 @@
<em>Example:</em> <code>"good shepherd" OR "faithful servant" -parable</code></p>
</div>
<div class="filter-row">
{% for f in field_options %}
<label class="check-pill">
<input type="checkbox" name="{{ f.name }}" {% if f.checked %}checked{% endif %}>
<span>{{ f.label }}</span>
</label>
{% endfor %}
</div>
</div>
<div class="muted small">Total entries: {{ total }}</div>
</form>