blob: c3ff85a8018125526d06f86fc01e1290db4e90ba [file] [log] [blame]
Bri Prebilic Cole96f26472015-03-31 13:07:05 -07001<!--
2 ~ Copyright 2015 Open Networking Laboratory
3 ~
4 ~ Licensed under the Apache License, Version 2.0 (the "License");
5 ~ you may not use this file except in compliance with the License.
6 ~ You may obtain a copy of the License at
7 ~
8 ~ http://www.apache.org/licenses/LICENSE-2.0
9 ~
10 ~ Unless required by applicable law or agreed to in writing, software
11 ~ distributed under the License is distributed on an "AS IS" BASIS,
12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ~ See the License for the specific language governing permissions and
14 ~ limitations under the License.
15 -->
16
17<!-- Intent partial HTML -->
18<div id="ov-intent">
19 <h2>Intents ({{ctrl.intentData.length}} total)</h2>
20 <table class="summary-list"
21 onos-fixed-header
22 onos-sortable-header
23 sort-callback="sortCallback(requestParams)">
24 <thead>
25 <tr>
26 <th colId="appId" sortable>Application ID </th>
27 <th colId="key" sortable>Key </th>
28 <th colId="type" sortable>Type </th>
29 <th colId="priority" sortable>Priority </th>
30 </tr>
31 </thead>
32
33 <tbody>
34 <tr ng-repeat="intent in ctrl.intentData"
35 ng-repeat-done>
36 <td>{{intent.appId}}</td>
37 <td>{{intent.key}}</td>
38 <td>{{intent.type}}</td>
39 <td>{{intent.priority}}</td>
40 </tr>
41 </tbody>
42 </table>
43
44</div>