blob: 1db00fc1d178dbdd42aa5dd53dd0978dfe4fa83d [file] [log] [blame]
Matteo Scandolo500e4c42017-08-08 13:05:24 -07001<!--
2Copyright 2017-present Open Networking Foundation
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15-->
16
Matteo Scandolo8cf33a32017-11-14 15:52:29 -080017<h1>Service Graph</h1>
Matteo Scandolo500e4c42017-08-08 13:05:24 -070018
Matteo Scandolo8cf33a32017-11-14 15:52:29 -080019<div class="graph-container">
20 <div class="loader-container" ng-if="vm.loader">
21 <div class="loader"></div>
22 </div>
23 <a ng-click="vm.closeFullscreen()" class="close-btn"><i class="fa fa-times"></i></a>
24 <svg></svg>
Matteo Scandolo865b11c2018-02-14 16:57:44 -080025 <div class="row" ng-if="!vm.loader">
Matteo Scandolob8cdf552018-02-12 17:56:26 -080026 <div class="col-md-3">
27 <a ng-click="vm.toggleModel('services')" ng-class="{active: vm.currentState >= 0}" class="btn btn-block btn-accent">
28 <span>Services</span>
29 </a>
30 </div>
31 <div class="col-md-3">
32 <a ng-click="vm.toggleModel('serviceinstances')" ng-class="{active: vm.currentState >= 1}" class="btn btn-block btn-accent">
33 <span>Service Instances</span>
34 </a>
35 </div>
36 <div class="col-md-3">
37 <a ng-click="vm.toggleModel('instances')" ng-class="{active: vm.currentState >= 2}" class="btn btn-block btn-accent">
38 <span>Instances</span>
39 </a>
40 </div>
41 <div class="col-md-3">
42 <a ng-click="vm.toggleModel('networks')" ng-class="{active: vm.currentState >= 3}" class="btn btn-block btn-accent">
43 <span>Networks</span>
44 </a>
45 </div>
46 </div>
Matteo Scandolo8cf33a32017-11-14 15:52:29 -080047</div>