blob: a7fcdce3ddc3b58243aa7a9357d7ea5c5963a1b6 [file] [log] [blame]
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -07001<!-- settings partial HTML -->
2<div id="ov-settings">
3 <div class="tabular-header">
4 <h2>Component Settings ({{tableData.length}} total)</h2>
5 <div class="ctrl-btns">
6 <div class="refresh active"
7 icon icon-size="36" icon-id="refresh"
8 ng-click="refresh()"></div>
9 </div>
10 </div>
11
12 <div class="summary-list" onos-fixed-header>
13
14 <div class="table-header"
15 onos-sortable-header sort-callback="sortCallback(requestParams)">
16 <table>
17 <tr>
18 <td colId="component" sortable col-width="400px">Component </td>
19 <td colId="id" sortable>Property </td>
20 <td colId="type" sortable col-width="70px">Type </td>
21 <td colId="value" sortable>Value </td>
22 <td colId="defValue" sortable>Default </td>
23 <td colId="desc" col-width="520px">Description </td>
24 </tr>
25 </table>
26 </div>
27
28 <div class="table-body">
29 <table>
30 <tr ng-hide="tableData.length" class="no-data ignore-width">
31 <td colspan="6">
32 No Settings found
33 </td>
34 </tr>
35
36 <tr ng-repeat="prop in tableData"
37 ng-repeat-done>
38 <td>{{prop.component}}</td>
39 <td>{{prop.id}}</td>
40 <td>{{prop.type}}</td>
41 <td>{{prop.value}}</td>
42 <td>{{prop.defValue}}</td>
43 <td>{{prop.desc}}</td>
44 </tr>
45 </table>
46 </div>
47
48 </div>
49
50</div>