{% macro settings_drodown(show_label_instead_icon = true) %} {% endmacro %} {# Render a complete usable search form including the form tags. mode can be "standalone" or "navbar" #} {% macro search_form(mode = "standalone") %} {% set is_navbar = (mode == "navbar") %}
{# Show the options left in navbar #} {% if is_navbar %} {{ _self.settings_drodown(is_navbar) }} {% endif %}
{# And right in the standalone mode #} {% if not is_navbar %} {{ _self.settings_drodown(is_navbar) }} {% endif %}
{% endmacro %}