aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/apps/demo/cord-gui/src/main/webapp/app/view/user/ratingPanel.html
blob: 04ee43038e2a1663a2738d4568a6a3b2ebc26ae1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!--Partial HTML for rating panel directive-->
<div id="rating-panel">
    <div ng-cloak class="ng-hide ng-cloak panel" ng-show="ratingsShown">
        <table>
            <tr>
                <th class="title">Category</th>
                <th ng-repeat="rating in level_order">{{rating}}</th>
            </tr>
            <tr ng-repeat="cat in category_order">
                <td class="title">{{cat}}</td>
                <td ng-repeat="r in level_order">
                    <div ng-if="prohibitedSites[r][cat]">
                        <icon size="15" id="xMark"></icon>
                    </div>
                   <div ng-if="!prohibitedSites[r][cat]">
                       <icon size="15" id="checkMark"></icon>
                   </div>
                </td>
            </tr>
        </table>
    </div>
</div>