blob: 15be2c21d97ae5b21e4305bececa4cf3c1a98e12 [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>
Bri Prebilic Cole2bd8c352015-03-31 16:18:50 -070034 <tr ng-repeat-start="intent in ctrl.intentData">
Bri Prebilic Cole96f26472015-03-31 13:07:05 -070035 <td>{{intent.appId}}</td>
36 <td>{{intent.key}}</td>
37 <td>{{intent.type}}</td>
38 <td>{{intent.priority}}</td>
39 </tr>
Bri Prebilic Cole2bd8c352015-03-31 16:18:50 -070040 <tr>
41 <td class="resources" colspan="4">{{intent.resources}}</td>
42 </tr>
43 <tr ng-repeat-end ng-repeat-done>
44 <td class="details" colspan="4">{{intent.details}}</td>
45 </tr>
Bri Prebilic Cole96f26472015-03-31 13:07:05 -070046 </tbody>
47 </table>
48
49</div>