Matteo Scandolo | 70bc45f | 2016-05-06 14:10:11 -0700 | [diff] [blame] | 1 | <div class="row"> |
| 2 | <div class="col-sm-10"> |
| 3 | <h1>Graph</h1> |
Matteo Scandolo | 70bc45f | 2016-05-06 14:10:11 -0700 | [diff] [blame] | 4 | </div> |
| 5 | <div class="col-sm-2"> |
Matteo Scandolo | 6ca57ea | 2017-01-06 11:43:33 -0800 | [diff] [blame] | 6 | <!-- <a href="/admin/core/service/add" class="btn btn-success btn-block"> |
Matteo Scandolo | 70bc45f | 2016-05-06 14:10:11 -0700 | [diff] [blame] | 7 | <i class="glyphicon glyphicon-plus"></i> |
| 8 | Add Service |
Matteo Scandolo | 6ca57ea | 2017-01-06 11:43:33 -0800 | [diff] [blame] | 9 | </a> --> |
Matteo Scandolo | 70bc45f | 2016-05-06 14:10:11 -0700 | [diff] [blame] | 10 | <a href="#/" class="btn btn-default btn-block"> |
| 11 | Service List |
| 12 | </a> |
| 13 | </div> |
Matteo Scandolo | e6393f0 | 2016-05-23 14:27:52 -0700 | [diff] [blame] | 14 | </div> |
| 15 | <xos-side-panel config="vm.panelConfig" show="vm.panelShow"> |
| 16 | <h1> |
| 17 | {{vm.selectedNode.name}} |
| 18 | <small> |
| 19 | <i class="glyphicon glyphicon-{{vm.selectedNode.icon}}"></i> |
| 20 | </small> |
| 21 | </h1> |
| 22 | <table class="table"> |
| 23 | <tr> |
| 24 | <td>Kind:</td> |
| 25 | <td>{{vm.selectedNode.kind}}</td> |
| 26 | </tr> |
| 27 | <tr> |
| 28 | <td>Enabled:</td> |
| 29 | <td>{{vm.selectedNode.enabled}}</td> |
| 30 | </tr> |
| 31 | <tr> |
| 32 | <td>Status:</td> |
| 33 | <td>{{vm.selectedNode.backend_status}}</td> |
| 34 | </tr> |
| 35 | </table> |
| 36 | <a ng-click="vm.exportToTosca(vm.selectedNode)" class="btn btn-primary"> |
| 37 | Export to TOSCA |
| 38 | <i class="glyphicon glyphicon-export"></i> |
| 39 | </a> |
| 40 | </xos-side-panel> |