aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/templates/status/index.html.j2
diff options
context:
space:
mode:
authorMicha? Jagie??o <michal.jagiello@t-mobile.pl>2023-06-22 10:37:04 +0000
committerGerrit Code Review <gerrit@onap.org>2023-06-22 10:37:04 +0000
commit4d8370108b05cbfba419b7b4cc0342a35a38fa14 (patch)
tree7d5cc1d3051cf8b711e12acf5c1aaa04069d15e9 /src/onaptests/templates/status/index.html.j2
parent99ee76f7f618282987e71a2c0b2ddbaa5bbd2689 (diff)
parentd553ee4c89f602263f7a973654244f61b07fbca5 (diff)
Merge "Namespace status verification 2.0"
Diffstat (limited to 'src/onaptests/templates/status/index.html.j2')
-rw-r--r--src/onaptests/templates/status/index.html.j218
1 files changed, 17 insertions, 1 deletions
diff --git a/src/onaptests/templates/status/index.html.j2 b/src/onaptests/templates/status/index.html.j2
index fe49abf..d85c5bb 100644
--- a/src/onaptests/templates/status/index.html.j2
+++ b/src/onaptests/templates/status/index.html.j2
@@ -297,7 +297,23 @@
{% endif %}
{% if (ns.ingresses | length) > 0 %}
- <div id="ingresses"></div>
+ <!-- Ingresses table -->
+ <div id="ingresses" class="table-container">
+ <table class="table is-fullwidth is-striped is-hoverable">
+ <thead>
+ <tr>
+ <th>Name</th>
+ </tr>
+ </thead>
+ <tbody>
+ {% for ingress in ns.ingresses %}
+ <tr>
+ <td>{{ ingress.name }}</td>
+ </tr>
+ {% endfor %}
+ </tbody>
+ </table>
+ </div>
{% endif %}
</div>