summaryrefslogtreecommitdiffstats
path: root/ogcp/templates
diff options
context:
space:
mode:
authorJavier Sánchez Parra <jsanchez@soleta.eu>2022-08-09 19:11:00 +0200
committerJavier Sánchez Parra <jsanchez@soleta.eu>2022-09-27 09:48:35 +0200
commit229ad311bee9fea54f7fdad4d5b3a74ea173f004 (patch)
treea30e0ccbc3bd4b5dd868c3440e13c50983ff6644 /ogcp/templates
parent2614c9304eef5fbbe33898c0e5e804b76cab8ba5 (diff)
Add current ogServer to scopesForm
With this commit when users select a scope, the ogServer to which it belongs is also sent. Then when processing the form we obtain this ogServer and we can send it the pertinent requests. This commit also makes action "Add client" to use the ogServer sent in the form.
Diffstat (limited to 'ogcp/templates')
-rw-r--r--ogcp/templates/macros.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/ogcp/templates/macros.html b/ogcp/templates/macros.html
index 28c4f5a..f67b1a6 100644
--- a/ogcp/templates/macros.html
+++ b/ogcp/templates/macros.html
@@ -23,7 +23,12 @@
{% macro scopes_tree_collapse_level(scopes, parent_id, state) -%}
{% for scope in scopes %}
<li id="{{ scope["name"]|replace(".", "_")|replace(" ", "_") }}_{{ scope["id"] }}" class="nav-item">
- {% if scope["type"] == "room" %}
+ {% if scope["type"] == "server" %}
+ <input class="form-check-input" type="checkbox" form="scopesForm"
+ value="{{ scope["server_ip_port"] }}" onclick="return false;"
+ {% if scope.get("selected", False) %}checked{% endif %}
+ name="scope-server" hidden/>
+ {% elif scope["type"] == "room" %}
<input class="form-check-input" type="checkbox" form="scopesForm"
value="{{ scope["id"] }}"
{% if state %}style="filter: grayscale(100%);" onclick="return false;"{% endif %}