diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2022-08-24 17:01:27 +0200 |
---|---|---|
committer | Javier Sánchez Parra <jsanchez@soleta.eu> | 2022-09-27 09:48:36 +0200 |
commit | c543ba25a642ebecd1955ad8c1d2c03ad3b3a7f1 (patch) | |
tree | 26e9355f578c99b1dad7a4e9d3743eb6f35e863e /ogcp/templates | |
parent | 873bee30aa9c6385420741fb23615cf5d20daffb (diff) |
Adapt images tree to work with several ogServers
Images view fetch images from all ogServers configured and show them in
the left tree as a nested list. ogServers are represented as the parents
of their images.
Diffstat (limited to 'ogcp/templates')
-rw-r--r-- | ogcp/templates/images.html | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/ogcp/templates/images.html b/ogcp/templates/images.html index 7ef1efc..4231df2 100644 --- a/ogcp/templates/images.html +++ b/ogcp/templates/images.html @@ -11,14 +11,20 @@ {% endblock %} {% block sidebar %} - <ul id="images" class="nav flex-column nav-pills"> - {% for image in images %} - <li id="{{ image["name"] }}_{{ image["id"] }}" class="nav-item"> - <input class="form-check-input" type="checkbox" form="imagesForm" - value="{{ image["id"] }}" - {% if image.get("selected", False) %}checked{% endif %} - name="{{ image["name"] }}_{{ image["id"] }}" /> - {{ image["name"] }} + <ul id="servers" class="nav flex-column nav-pills"> + {% for response in responses %} + <li class="nav-item"><b>{{ response["server"]["name"] }}</b> + <ul id="images" class="nav flex-column nav-pills"> + {% for image in response["json"]["images"] %} + <li id="{{ image["name"] }}_{{ image["id"] }}" class="nav-item"> + <input class="form-check-input" type="checkbox" form="imagesForm" + value="{{ image["id"] }}" + {% if image.get("selected", False) %}checked{% endif %} + name="{{ image["name"] }}_{{ image["id"] }}" /> + {{ image["name"] }} + </li> + {% endfor %} + </ul> </li> {% endfor %} </ul> |