diff options
author | 2017-08-25 00:50:21 +0000 | |
---|---|---|
committer | 2017-08-25 00:50:21 +0000 | |
commit | f5a96ffd959b11a122c4beea1fc99c89f755678c (patch) | |
tree | 1c0cad1b94f33a3275c816999653870e6955d6eb /gui/app/views/modal/environmentDialog.html | |
parent | ffecd5b84eecdb74d7534b801c1359251c34b34e (diff) | |
parent | efb4f088f14aee394599bea21973f82f1867c4fe (diff) |
Merge "Add function to upload image from local/url in GUI"
Diffstat (limited to 'gui/app/views/modal/environmentDialog.html')
-rw-r--r-- | gui/app/views/modal/environmentDialog.html | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/gui/app/views/modal/environmentDialog.html b/gui/app/views/modal/environmentDialog.html index 389de8340..4c539fc33 100644 --- a/gui/app/views/modal/environmentDialog.html +++ b/gui/app/views/modal/environmentDialog.html @@ -133,16 +133,17 @@ <table class="table table-striped"> <tr> + <th>choose</th> <th>name</th> - <th>size</th> + <th>description</th> <th>status</th> - <th>time</th> </tr> - <tr ng-repeat="image in imageListData"> - <td>{{image.name}}</td> - <td>{{image.size/1024}} mb</td> - <td>{{image.status}}</td> - <td>{{image.time}}</td> + <tr ng-repeat="(name, value) in yardstickImage"> + <td ng-if="selectImageList.indexOf(name) > -1"><img src="images/checkyes.png" style="height:12px;cursor:pointer" ng-click="unselectImage(name)" /></td> + <td ng-if="selectImageList.indexOf(name) == -1"><img src="images/checkno.png" style="height:12px;cursor:pointer" ng-click="selectImage(name)" /></td> + <td>{{name}}</td> + <td>{{value.description}}</td> + <td>{{value.status}}</td> </tr> |