diff options
Diffstat (limited to 'testapi/opnfv_testapi/ui/components/deploy-results')
-rw-r--r-- | testapi/opnfv_testapi/ui/components/deploy-results/deploy-result/deployResult.html | 4 | ||||
-rw-r--r-- | testapi/opnfv_testapi/ui/components/deploy-results/deployResults.html | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/testapi/opnfv_testapi/ui/components/deploy-results/deploy-result/deployResult.html b/testapi/opnfv_testapi/ui/components/deploy-results/deploy-result/deployResult.html index 2eba504..82a0780 100644 --- a/testapi/opnfv_testapi/ui/components/deploy-results/deploy-result/deployResult.html +++ b/testapi/opnfv_testapi/ui/components/deploy-results/deploy-result/deployResult.html @@ -12,6 +12,10 @@ <td width="90%" class="podsTableLeftTd">{{ctrl.data.installer}}</td> </tr> <tr style="padding:9px"> + <td class="podsTableTd">Version :</td> + <td width="90%" class="podsTableLeftTd">{{ctrl.data.version}}</td> + </tr> + <tr style="padding:9px"> <td class="podsTableTd">Scenario :</td> <td width="90%" class="podsTableLeftTd">{{ctrl.data.scenario}}</td> </tr> diff --git a/testapi/opnfv_testapi/ui/components/deploy-results/deployResults.html b/testapi/opnfv_testapi/ui/components/deploy-results/deployResults.html index 380416f..7998f3c 100644 --- a/testapi/opnfv_testapi/ui/components/deploy-results/deployResults.html +++ b/testapi/opnfv_testapi/ui/components/deploy-results/deployResults.html @@ -83,6 +83,7 @@ <tr> <th>ID</th> <th>Installer</th> + <th>Version</th> <th>Scenario</th> <th>Pod</th> <th>Criteria</th> @@ -95,6 +96,7 @@ <tr ng-repeat-start="(index, result) in ctrl.data.deployresults"> <td><a ng-click="ctrl.viewDeployResult(result._id)">{{ result._id.substr(-8) }}</a></td> <td>{{ result.installer }}</td> + <td>{{ result.version }}</td> <td>{{ result.scenario }}</td> <td>{{ result.pod_name }}</td> <td>{{ result.criteria }}</td> |