view sat_templates/templates/bulma/dialogs/macros.html @ 295:1de599c5a68f

bulma (base): loading screen: when the `loading_screen` variable is set before extending `base/base.html`, a loading modal is shown (and must be removed via JavaScript). This avoids the user to try to use an interface which is not reactive or working normally because JS is not fully loaded yet.
author Goffi <goffi@goffi.org>
date Fri, 27 Nov 2020 12:24:03 +0100
parents 2378084522e1
children
line wrap: on
line source

{# macros for generic dialogs #}

{% macro search_dialog(id=none, class='') %}
    <div{{ {'id': id}|xmlattr }} class="search_dialog dropdown is-active {{class}}">
        <div class="dropdown-trigger">
            {{ caller() }}
        </div>
        <div class="dropdown-menu" id="dropdown-menu" role="menu">
            <div class="search_dialog__content dropdown-content">
            </div>
        </div>
    </div>
{% endmacro %}