diff options
Diffstat (limited to 'ogcp/templates')
-rw-r--r-- | ogcp/templates/commands.html | 3 | ||||
-rw-r--r-- | ogcp/templates/macros.html | 5 | ||||
-rw-r--r-- | ogcp/templates/scopes.html | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/ogcp/templates/commands.html b/ogcp/templates/commands.html index 1b51701..9fa8617 100644 --- a/ogcp/templates/commands.html +++ b/ogcp/templates/commands.html @@ -96,3 +96,6 @@ </div> {% endblock %} +{% block content %} + {{ macros.selected_clients() }} +{% endblock %} diff --git a/ogcp/templates/macros.html b/ogcp/templates/macros.html index a1b5ebb..7864cd4 100644 --- a/ogcp/templates/macros.html +++ b/ogcp/templates/macros.html @@ -8,6 +8,7 @@ // in the scope document.addEventListener('readystatechange', () => { if (document.readyState === 'complete') { + showSelectedClientsOnEvents(); updateScopeState(); keepScopesTreeState(); keepSelectedClients(); @@ -47,3 +48,7 @@ </li> {% endfor %} {% endmacro %} + +{% macro selected_clients() -%} +<div id="selected-clients" class="d-flex flex-wrap justify-content-center"></div> +{% endmacro %} diff --git a/ogcp/templates/scopes.html b/ogcp/templates/scopes.html index 6c543fa..81b2403 100644 --- a/ogcp/templates/scopes.html +++ b/ogcp/templates/scopes.html @@ -29,3 +29,7 @@ <input class="btn btn-light" type="submit" value="{{ _('Delete center') }}" form="scopesForm" formaction="{{ url_for('action_center_delete') }}" formmethod="get"> {% endblock %} + +{% block content %} + {{ macros.selected_clients() }} +{% endblock %} |