blob: c5d87ba39cd219a983ebc9b97693cd2bc6016a7c [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">
Bri Prebilic Cole41d67652015-06-02 10:23:04 -07006 <div class="refresh" ng-class="{active: autoRefresh}"
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -07007 icon icon-size="36" icon-id="refresh"
Bri Prebilic Cole41d67652015-06-02 10:23:04 -07008 ng-click="toggleRefresh()"></div>
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -07009 </div>
10 </div>
11
Bri Prebilic Coleb3a6afe2015-06-24 14:10:41 -070012 <div class="summary-list" onos-table-resize>
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070013
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>
Bri Prebilic Coleb3a6afe2015-06-24 14:10:41 -070020 <td colId="component" sortable col-width="200px">Component </td>
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070021 <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>
Bri Prebilic Coleb3a6afe2015-06-24 14:10:41 -070025 <td colId="desc" col-width="400px">Description </td>
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070026 </tr>
27 </table>
28 </div>
29
30 <div class="table-body">
31 <table>
Bri Prebilic Coleb3a6afe2015-06-24 14:10:41 -070032 <tr ng-if="!tableData.length" class="no-data">
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070033 <td colspan="6">
34 No Settings found
35 </td>
36 </tr>
37
Bri Prebilic Coleb3a6afe2015-06-24 14:10:41 -070038 <tr ng-repeat="prop in tableData track by $index">
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070039 <td>{{prop.component}}</td>
40 <td>{{prop.id}}</td>
41 <td>{{prop.type}}</td>
42 <td>{{prop.value}}</td>
43 <td>{{prop.defValue}}</td>
44 <td>{{prop.desc}}</td>
45 </tr>
46 </table>
47 </div>
48
49 </div>
50
51</div>