diff options
author | chenjiankun <chenjiankun1@huawei.com> | 2017-12-28 01:39:07 +0000 |
---|---|---|
committer | chenjiankun <chenjiankun1@huawei.com> | 2017-12-29 06:19:03 +0000 |
commit | af1debe11cf4793bae049ff3ffd63dc906bbc1c9 (patch) | |
tree | 97eee0742b2231b74b9ce6d5b670dd0cf98e0293 /cvp/3rd_party/static/testapi-ui/components/results/results.html | |
parent | cb03da10feb8af4cd48add8ab96b134f6d6ebd1c (diff) |
[ovp-web] Add SUT version number to OVP portal
JIRA: DOVETAIL-572
We currently have a label column in the OVP test result view. This
allows users to attach a custom label field to their results. It is at
the users discretion to fill out this field.
We need a separate SUT version column to track the product version
number being submitted for official review. The field can be left blank
when users upload and share results in a private manner. However, the
OVP portal must check that this new 'SUT version' field is populated
before results are officially submitted for review. An error message
prompting the user to fill out this field if it is blank must be
implemented when users submit results for review.
Change-Id: I1ca915423a56e8173a3a13f1b84b066cf91d9291
Signed-off-by: chenjiankun <chenjiankun1@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 | 4 |
1 files changed, 3 insertions, 1 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 8d7e4482..f53023d9 100644 --- a/cvp/3rd_party/static/testapi-ui/components/results/results.html +++ b/cvp/3rd_party/static/testapi-ui/components/results/results.html @@ -29,6 +29,7 @@ <th>Status</th> <th>Log</th> <th>SUT</th> + <th>SUT Version</th> <th class="col-md-2">Operation</th> <th class="col-md-2">Share List</th> </tr> @@ -40,10 +41,11 @@ <td><a uib-tooltip="{{ result.id }}" tooltip-placement="top" tooltip-append-to-body="true" ng-click="ctrl.gotoResultDetail(result.id, result._id)">{{ result.id | limitTo:8 }}</a></td> <td>{{ result.owner }}</td> <td>{{ result.filename || "None"}}</td> - <td><div class="popover-wrapper"><a editable-theme="bs3" onbeforesave="ctrl.changeLabel(result, $data)" editable-text="result.label"> {{ result.label || "None" }}</a></div></td> + <td><div class="popover-wrapper"><a editable-theme="bs3" onbeforesave="ctrl.changeLabel(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><a ng-click="ctrl.gotoSUT(result.id)">info</a></td> + <td><div class="popover-wrapper"><a editable-theme="bs3" onbeforesave="ctrl.changeLabel(result, 'sut_label', $data)" editable-text="result.sut_label"> {{ result.sut_label || "None" }}</a></div></td> <td> <div class="btn-group" uib-dropdown> <a id="single-button" type="button" class="btn btn-success cvp-btn medium accent-color regular-button" uib-dropdown-toggle> |