blob: f6b00cb1ef096115467589447ec660abc8b74c93 [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 Scandolo7547f042016-02-09 09:13:30 -080019<div class="container-fluid">
Matteo Scandolo574c73f2016-03-01 17:08:45 -080020 <div ng-hide="vm.error && vm.loader" style="height: 900px">
Matteo Scandolo07246ca2016-02-22 09:16:46 -080021 <div class="onethird-height">
Matteo Scandolo19acf7c2016-03-07 16:07:13 -080022 <div class="well">
23 Services Graph
24 </div>
Matteo Scandolo3b47f722016-03-07 17:16:19 -080025 <div class="well pull-right" ng-click="vm.reloadGlobalScope()" ng-show="vm.selectedSubscriber">
Matteo Scandolo3a176a22016-03-07 16:42:03 -080026 Reset subscriber
27 </div>
Matteo Scandolo07246ca2016-02-22 09:16:46 -080028 <service-topology service-chain="vm.serviceChain"></service-topology>
29 </div>
30 <div class="twothird-height">
Matteo Scandolo19acf7c2016-03-07 16:07:13 -080031 <div class="well">
32 Logical Resources
33 </div>
Matteo Scandolo07246ca2016-02-22 09:16:46 -080034 <logic-topology ng-if="vm.subscribers" subscribers="vm.subscribers" selected="vm.selectedSubscriber"></logic-topology>
35 </div>
Matteo Scandolo7547f042016-02-09 09:13:30 -080036 </div>
Matteo Scandolo574c73f2016-03-01 17:08:45 -080037 <div class="row" ng-if="vm.error">
Matteo Scandolo07246ca2016-02-22 09:16:46 -080038 <div class="col-xs-12">
39 <div class="alert alert-danger">
40 {{vm.error}}
Matteo Scandolo7547f042016-02-09 09:13:30 -080041 </div>
Matteo Scandolo07246ca2016-02-22 09:16:46 -080042 </div>
43 </div>
Matteo Scandolo574c73f2016-03-01 17:08:45 -080044 <div class="row" ng-if="vm.loader">
Matteo Scandolo07246ca2016-02-22 09:16:46 -080045 <div class="col-xs-12">
46 <div class="loader">Loading</div>
47 </div>
Matteo Scandolo7547f042016-02-09 09:13:30 -080048 </div>
49</div>