diff options
Diffstat (limited to 'src/onaptests/templates/status/index.html.j2')
-rw-r--r-- | src/onaptests/templates/status/index.html.j2 | 18 |
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> |