mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-18 01:14:52 -05:00
23 lines
584 B
HTML
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 %}
|