blob: 6e7dba50ab32430c36d179af6baedf256633ee33 [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"
Bri Prebilic Colebfab9c72015-06-01 14:33:18 -07008 ng-click="refresh(sortParams)"></div>
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -07009 </div>
10 </div>
11
12 <div class="summary-list" onos-fixed-header>
13
14 <div class="table-header"
Bri Prebilic Colebfab9c72015-06-01 14:33:18 -070015 onos-sortable-header
16 sort-params="sortParams"
17 sort-callback="sortCallback(sortParams)">
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070018 <table>
19 <tr>
20 <td colId="component" sortable col-width="400px">Component </td>
21 <td colId="id" sortable>Property </td>
22 <td colId="type" sortable col-width="70px">Type </td>
23 <td colId="value" sortable>Value </td>
24 <td colId="defValue" sortable>Default </td>
25 <td colId="desc" col-width="520px">Description </td>
26 </tr>
27 </table>
28 </div>
29
30 <div class="table-body">
31 <table>
32 <tr ng-hide="tableData.length" class="no-data ignore-width">
33 <td colspan="6">
34 No Settings found
35 </td>
36 </tr>
37
38 <tr ng-repeat="prop in tableData"
39 ng-repeat-done>
40 <td>{{prop.component}}</td>
41 <td>{{prop.id}}</td>
42 <td>{{prop.type}}</td>
43 <td>{{prop.value}}</td>
44 <td>{{prop.defValue}}</td>
45 <td>{{prop.desc}}</td>
46 </tr>
47 </table>
48 </div>
49
50 </div>
51
52</div>