blob: 40348a4e4c7103a632ab35f9aef346b67e1aaf1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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 %}
|