bookwyrm/bookwyrm/templates/shelf/search_filter_field.html
2023-12-05 19:37:29 -08:00

10 lines
429 B
HTML

{% extends 'snippets/filters_panel/filter_field.html' %}
{% load i18n %}
{% block filter %}
<div class="control">
<label class="label" for="search_query">{% trans 'Search by keyword' %}</label>
<input aria-label="Search by keyword" id="my-books-search" class="input" type="text" name="shelves_q" placeholder="Enter text here" value="{{ shelves_search_query|default:'' }}" spellcheck="false" />
</div>
{% endblock %}