Files
notifications-admin/app/templates/components/live-search.html
2019-01-23 16:55:18 +00:00

23 lines
584 B
HTML

{% from "components/textbox.html" import textbox %}
{% macro live_search(
target_selector=None,
show=False,
form=None,
label=None
) %}
{%- set search_label = label or form.search.label.text %}
{% if show %}
<div data-module="autofocus">
<div class="live-search js-header" data-module="live-search" data-targets="{{ target_selector }}">
{{ textbox(
form.search,
width='1-1',
label=search_label,
autocomplete="off"
) }}
</div>
</div>
{% endif %}
{% endmacro %}