diff options
author | grakiss <grakiss.wanglei@huawei.com> | 2017-10-30 07:26:37 +0000 |
---|---|---|
committer | Leo wang <grakiss.wanglei@huawei.com> | 2017-11-01 08:44:36 +0000 |
commit | 55bb29b1d7b977b387a74f754b4baea94274141c (patch) | |
tree | 74ef8f67b87213ad1eacd9d681c05490c000003a /cvp/3rd_party/static/testapi-ui/components/results/results.html | |
parent | 62562458e6fd007f4240b669f509f772dd883ca5 (diff) |
[cvp-web] Show some SUT hardware info in 'My Results'
[cvp-web] Show SUT endpoint in web page
JIRA: DOVETAIL-541
JIRA: DOVETAIL-547
Show some SUT hardware info that dovetail concern in 'My Results' web page.
Show the info of all endpoints get from Dovetail tool in the web page.
Change-Id: Ibc465396e17b7c22678e3948fa2f659cbff6f323
Signed-off-by: grakiss <grakiss.wanglei@huawei.com>
Diffstat (limited to 'cvp/3rd_party/static/testapi-ui/components/results/results.html')
-rw-r--r-- | cvp/3rd_party/static/testapi-ui/components/results/results.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cvp/3rd_party/static/testapi-ui/components/results/results.html b/cvp/3rd_party/static/testapi-ui/components/results/results.html index e1d05b2d..cd38ad75 100644 --- a/cvp/3rd_party/static/testapi-ui/components/results/results.html +++ b/cvp/3rd_party/static/testapi-ui/components/results/results.html @@ -25,6 +25,7 @@ <th>Label</th> <th>Status</th> <th>Log</th> + <th>SUT</th> <th class="col-md-2">Operation</th> <th class="col-md-2">Share List</th> </tr> @@ -32,13 +33,14 @@ <tbody style="white-space: nowrap; overflow: hidden; text-overflow: ellipsis;"> <tr ng-repeat="(index, result) in ctrl.data.tests"> - <td>{{ result.upload_date }}</td> + <td>{{ result.upload_date | limitTo:19}}</td> <td><a ng-click="ctrl.gotoResultDetail(result.id, result._id)">{{ result.id }}</a></td> <td>{{ result.filename || "None"}}</td> <td><div class="popover-wrapper"><a editable-theme="bs3" onbeforesave="ctrl.toggleCheck(result, 'label', $data)" editable-text="result.label"> {{ result.label || "None" }}</a></div></td> <td>{{ result.status }}</td> <td><a ng-click="ctrl.downloadLogs(result.id)">logs</a></td> - <td> + <td><a ng-click="ctrl.gotoSUT(result.id)">info</a></td> + <td> <div class="btn-group" uib-dropdown> <a id="single-button" type="button" class="nectar-button medium accent-color regular-button" uib-dropdown-toggle> Operation<span class="caret"></span> |