diff options
author | SerenaFeng <feng.xiaowei@zte.com.cn> | 2018-03-13 13:58:03 +0800 |
---|---|---|
committer | SerenaFeng <feng.xiaowei@zte.com.cn> | 2018-03-13 14:00:51 +0800 |
commit | 6e3246b058fcb804a053107536f99896cbcfc9fe (patch) | |
tree | 374b2c4bdec5312157b3dba8fcb8a2a88daa17c0 | |
parent | f826a2a29a5626db630470513a097413c8af4062 (diff) |
add version in deployresults page
Change-Id: Id7c8064933c150fa72cbe1351a99aeb80e8f2150
Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
-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 ba9bee7..f02f910 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> |