Merge "Use AAAShiroFilter as TokenAuthFilter was deprecated in Be"
[groupbasedpolicy.git] / groupbasedpolicy-old-ui / module / src / main / resources / gbp / views / governance / delivered-policy.tpl.html
1 <div ng-controller="deliveredPolicyCtrl">
2     <section class="simpleBox col-md-3">
3         <label class="block"><span>Tenants list</span></label>
4         <div class="selectWrapper col-md-12">
5             <select class="form-control" ng-model="selectedTenant" ng-change="setTenant(selectedTenant)" ng-options="getDisplayLabel(d, tenantDisplayLabel) for d in tenantList">
6                 <option value="">Select option</option>
7             </select>
8         </div>
9     </section>
10     <section class="sectionTitle col-md-3">
11         <label class="block"><span>Delivered policy</span></label>
12     </section>
13
14     <!-- Legend -->
15     <section class="simpleBox col-md-2 legendBox" ng-show="selectedTenant">
16         <ul>
17             <li class="item"><span class="line green"></span>consumes</li>
18             <li class="item"><span class="line blue"></span>provides</li>
19         </ul>
20     </section>
21
22     <!-- Graph -->
23     <div class="clear"></div>
24     <section class="graphWrapper" ng-controller="graphCtrl" ng-init="init(getPaperObj())">
25         
26         <section class="controlPanelButtons">
27             <button class="btn btn-primary btn-slim" ng-click="zoom()"><i class="icon-zoom-in"></i></button>
28             <div class="line"></div>
29             <button class="btn btn-primary btn-slim" ng-click="zoom(true)"><i class="icon-zoom-out"></i></button>
30         </section>
31
32         <div graph="graph" id="graph" grid-size="1" />
33     </section>
34 </div>