Update web/templates/search.html
This commit is contained in:
parent
26ab9830e0
commit
f0cf33a18c
@ -78,16 +78,7 @@
|
|||||||
<button class="btn btn-primary">Search</button>
|
<button class="btn btn-primary">Search</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="filter-row">
|
<!-- Test Help Dropdown -->
|
||||||
{% 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 -->
|
|
||||||
<div class="search-help">
|
<div class="search-help">
|
||||||
<button class="help-toggle" type="button" onclick="this.nextElementSibling.classList.toggle('open')">
|
<button class="help-toggle" type="button" onclick="this.nextElementSibling.classList.toggle('open')">
|
||||||
❓ Instructions for Use
|
❓ Instructions for Use
|
||||||
@ -116,6 +107,15 @@
|
|||||||
<p><strong>Tip:</strong> You can combine these for powerful searches.<br>
|
<p><strong>Tip:</strong> You can combine these for powerful searches.<br>
|
||||||
<em>Example:</em> <code>"good shepherd" OR "faithful servant" -parable</code></p>
|
<em>Example:</em> <code>"good shepherd" OR "faithful servant" -parable</code></p>
|
||||||
</div>
|
</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>
|
||||||
<div class="muted small">Total entries: {{ total }}</div>
|
<div class="muted small">Total entries: {{ total }}</div>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user