blob: a4afde2f9929e43b4db8351db7a2fd29b403d0a2 [file] [log] [blame]
Matteo Scandolod2044a42017-08-07 16:08:28 -07001
2<!--
3Copyright 2017-present Open Networking Foundation
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16-->
17
18
Matteo Scandolo70bc45f2016-05-06 14:10:11 -070019<div class="row">
20 <div class="col-sm-10">
21 <h1>Graph</h1>
Matteo Scandolo70bc45f2016-05-06 14:10:11 -070022 </div>
23 <div class="col-sm-2">
Matteo Scandolo6ca57ea2017-01-06 11:43:33 -080024 <!-- <a href="/admin/core/service/add" class="btn btn-success btn-block">
Matteo Scandolo70bc45f2016-05-06 14:10:11 -070025 <i class="glyphicon glyphicon-plus"></i>
26 Add Service
Matteo Scandolo6ca57ea2017-01-06 11:43:33 -080027 </a> -->
Matteo Scandolo70bc45f2016-05-06 14:10:11 -070028 <a href="#/" class="btn btn-default btn-block">
29 Service List
30 </a>
31 </div>
Matteo Scandoloe6393f02016-05-23 14:27:52 -070032</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>