blob: ae909cdb0842c671e2fa84076875e33a246f03be [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 Coleeef67ae2015-07-01 16:26:59 -07008 tooltip tt-msg="autoRefreshTip"
Bri Prebilic Cole41d67652015-06-02 10:23:04 -07009 ng-click="toggleRefresh()"></div>
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070010 </div>
11 </div>
12
Bri Prebilic Coleb3a6afe2015-06-24 14:10:41 -070013 <div class="summary-list" onos-table-resize>
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070014
15 <div class="table-header"
Bri Prebilic Colebfab9c72015-06-01 14:33:18 -070016 onos-sortable-header
17 sort-params="sortParams"
18 sort-callback="sortCallback(sortParams)">
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070019 <table>
20 <tr>
Bri Prebilic Coleb3a6afe2015-06-24 14:10:41 -070021 <td colId="component" sortable col-width="200px">Component </td>
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070022 <td colId="id" sortable>Property </td>
23 <td colId="type" sortable col-width="70px">Type </td>
24 <td colId="value" sortable>Value </td>
25 <td colId="defValue" sortable>Default </td>
Bri Prebilic Coleb3a6afe2015-06-24 14:10:41 -070026 <td colId="desc" col-width="400px">Description </td>
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070027 </tr>
28 </table>
29 </div>
30
31 <div class="table-body">
32 <table>
Bri Prebilic Coleb3a6afe2015-06-24 14:10:41 -070033 <tr ng-if="!tableData.length" class="no-data">
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070034 <td colspan="6">
35 No Settings found
36 </td>
37 </tr>
38
Bri Prebilic Coleb3a6afe2015-06-24 14:10:41 -070039 <tr ng-repeat="prop in tableData track by $index">
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070040 <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>