diff options
Diffstat (limited to 'src/onaptests/templates/status/version.html.j2')
-rw-r--r-- | src/onaptests/templates/status/version.html.j2 | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/onaptests/templates/status/version.html.j2 b/src/onaptests/templates/status/version.html.j2 new file mode 100644 index 0000000..40348a4 --- /dev/null +++ b/src/onaptests/templates/status/version.html.j2 @@ -0,0 +1,28 @@ + +{% extends "base.html.j2" %} +{% block title %}ONAP Docker Versions{% endblock %} + +{% block content %} +<h1 class="title is-1">ONAP Docker versions</h1> +<table class="table is-bordered is-striped is-narrow is-hoverable is-fullwidth"> + <thead> + <tr> + <th>Component</th> + <th>Container</th> + <th>Image</th> + <th>Version</th> + </tr> + </thead> + <tbody> + <tr> + {% for pod in pod_versions %} + <tr> + <td>{{ pod.component }}</td> + <td>{{ pod.container }}</td> + <td>{{ pod.image }}</td> + <td>{{ pod.version }}</td> + </tr> + {% endfor %} + </tbody> + </table> +{% endblock %} |