diff options
author | Georg Kunz <georg.kunz@ericsson.com> | 2018-07-26 23:32:54 +0200 |
---|---|---|
committer | Georg Kunz <georg.kunz@ericsson.com> | 2018-07-27 14:32:03 +0200 |
commit | 4a7221beef916ffddf6404711a4283276d3e62af (patch) | |
tree | fedc03bbcb5b3cb2864b44e5b68adc3ecf09fad7 /3rd_party/static/testapi-ui/components/results | |
parent | 635f8b72b7ff629b32ba8b66b33cf3424c6f6868 (diff) |
Showing OVP version on "my results" page
Adding an "OVP Version" column to the "my results" page.
JIRA: DOVETAIL-708
Change-Id: Id9a9228002f3be88fda8c71aedf2f5abe24d833d
Signed-off-by: Georg Kunz <georg.kunz@ericsson.com>
Diffstat (limited to '3rd_party/static/testapi-ui/components/results')
-rw-r--r-- | 3rd_party/static/testapi-ui/components/results/results.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/3rd_party/static/testapi-ui/components/results/results.html b/3rd_party/static/testapi-ui/components/results/results.html index 719e689..80d08d6 100644 --- a/3rd_party/static/testapi-ui/components/results/results.html +++ b/3rd_party/static/testapi-ui/components/results/results.html @@ -23,6 +23,7 @@ <tr> <th>Upload Date</th> <th>Test ID</th> + <th>OVP Version</th> <th>Owner</th> <th>File Name</th> <th>Label</th> @@ -39,6 +40,7 @@ <tr ng-repeat="(index, result) in ctrl.data.tests"> <td>{{ result.upload_date | limitTo:19}}</td> <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.version || "2018.01" }}</td> <td>{{ result.owner }}</td> <td>{{ result.filename || "None"}}</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> |