{% macro live_search( target_selector=None, show=False, form=None, label=None, autofocus=True ) %} {%- set search_label = label or form.search.label.text %} {%- set param_extensions = { "label": {"text": search_label}, "autocomplete": "off", } %} {% if autofocus %} {% set _ = param_extensions.__setitem__("attributes", {"autofocus": "autofocus"}) %} {% endif %} {% if show %} {% endif %} {% endmacro %}