blob: ee069d3738e31b150fc79db51ae92dc4ff51d243 [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>
Bri Prebilic Cole6e1b4a52015-08-03 17:10:44 -070014 <div ng-show="loading" class="loading-wheel"
15 icon icon-id="loading" icon-size="75"></div>
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070016
Bri Prebilic Cole0c41ba22015-07-06 15:09:48 -070017 <div class="table-header" onos-sortable-header>
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">
Bri Prebilic Cole70aacc42015-07-22 11:28:34 -070031 <table onos-flash-changes id-prop="id">
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 Cole0bc4de22015-07-20 17:07:55 -070038 <tr ng-repeat="prop in tableData track by $index"
Bri Prebilic Cole70aacc42015-07-22 11:28:34 -070039 ng-repeat-complete row-id="{{prop.id}}">
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>