Merge "Use AAAShiroFilter as TokenAuthFilter was deprecated in Be"
[groupbasedpolicy.git] / groupbasedpolicy-old-ui / module / src / main / resources / gbp / views / box / rule-content-static.tpl.html
1 <div ng-controller="boxStaticCtrl" class="simpleBox maxHeight500">
2     <h2 class="text-center">Rule</h2>
3
4     <section class="formWrapper clearfix">
5         <section>
6             <label class="block">Name:</label>
7             <span>{{selectedObj.name}}</span>
8
9
10             <section class="formWrapper" ng-repeat="classifier in selectedObj['classifier-ref'] track by $index" ng-show="selectedObj['classifier-ref']">
11                 <label class="block mb0"><span>Classifier ref</span></label>
12
13                 <div>
14                     <label class="basicLabel mb0">Name:</label>
15                     <span>{{classifier.name}}</span>
16                 </div>
17
18                 <div ng-show="classifier.direction">
19                     <label class="basicLabel mb0">Direction:</label>
20                     <span>{{classifier.direction}}</span>
21                 </div>
22             </section>
23
24             <section class="formWrapper" ng-show="selectedObj['action-ref']" ng-repeat="action in selectedObj['action-ref'] track by $index">
25
26                     <label class="block mb0"><span>Action ref</span></label>
27
28                     <div class="rowWrapper">
29                         <label class="basicLabel mb0">Name:</label>
30                         <span>{{action.name}}</span>
31                     </div>
32
33             </section>
34
35         </section>
36     </section>
37
38 </div>