Matteo Scandolo | d2044a4 | 2017-08-07 16:08:28 -0700 | [diff] [blame] | 1 | |
| 2 | <!-- |
| 3 | Copyright 2017-present Open Networking Foundation |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | --> |
| 17 | |
| 18 | |
Matteo Scandolo | 70bc45f | 2016-05-06 14:10:11 -0700 | [diff] [blame] | 19 | <div class="row"> |
| 20 | <div class="col-sm-10"> |
| 21 | <h1>Graph</h1> |
Matteo Scandolo | 70bc45f | 2016-05-06 14:10:11 -0700 | [diff] [blame] | 22 | </div> |
| 23 | <div class="col-sm-2"> |
Matteo Scandolo | 6ca57ea | 2017-01-06 11:43:33 -0800 | [diff] [blame] | 24 | <!-- <a href="/admin/core/service/add" class="btn btn-success btn-block"> |
Matteo Scandolo | 70bc45f | 2016-05-06 14:10:11 -0700 | [diff] [blame] | 25 | <i class="glyphicon glyphicon-plus"></i> |
| 26 | Add Service |
Matteo Scandolo | 6ca57ea | 2017-01-06 11:43:33 -0800 | [diff] [blame] | 27 | </a> --> |
Matteo Scandolo | 70bc45f | 2016-05-06 14:10:11 -0700 | [diff] [blame] | 28 | <a href="#/" class="btn btn-default btn-block"> |
| 29 | Service List |
| 30 | </a> |
| 31 | </div> |
Matteo Scandolo | e6393f0 | 2016-05-23 14:27:52 -0700 | [diff] [blame] | 32 | </div> |
| 33 | <xos-side-panel config="vm.panelConfig" show="vm.panelShow"> |
| 34 | <h1> |
| 35 | {{vm.selectedNode.name}} |
| 36 | <small> |
| 37 | <i class="glyphicon glyphicon-{{vm.selectedNode.icon}}"></i> |
| 38 | </small> |
| 39 | </h1> |
| 40 | <table class="table"> |
| 41 | <tr> |
| 42 | <td>Kind:</td> |
| 43 | <td>{{vm.selectedNode.kind}}</td> |
| 44 | </tr> |
| 45 | <tr> |
| 46 | <td>Enabled:</td> |
| 47 | <td>{{vm.selectedNode.enabled}}</td> |
| 48 | </tr> |
| 49 | <tr> |
| 50 | <td>Status:</td> |
| 51 | <td>{{vm.selectedNode.backend_status}}</td> |
| 52 | </tr> |
| 53 | </table> |
| 54 | <a ng-click="vm.exportToTosca(vm.selectedNode)" class="btn btn-primary"> |
| 55 | Export to TOSCA |
| 56 | <i class="glyphicon glyphicon-export"></i> |
| 57 | </a> |
| 58 | </xos-side-panel> |