blob: 0faa1c20eddf8204fd97401321f926cc8c102954 [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
Bri Prebilic Cole0c41ba22015-07-06 15:09:48 -070015 <div class="table-header" onos-sortable-header>
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070016 <table>
17 <tr>
Bri Prebilic Coleb3a6afe2015-06-24 14:10:41 -070018 <td colId="component" sortable col-width="200px">Component </td>
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070019 <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>
Bri Prebilic Coleb3a6afe2015-06-24 14:10:41 -070023 <td colId="desc" col-width="400px">Description </td>
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070024 </tr>
25 </table>
26 </div>
27
28 <div class="table-body">
Bri Prebilic Cole70aacc42015-07-22 11:28:34 -070029 <table onos-flash-changes id-prop="id">
Bri Prebilic Coleb3a6afe2015-06-24 14:10:41 -070030 <tr ng-if="!tableData.length" class="no-data">
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070031 <td colspan="6">
32 No Settings found
33 </td>
34 </tr>
35
Bri Prebilic Cole0bc4de22015-07-20 17:07:55 -070036 <tr ng-repeat="prop in tableData track by $index"
Bri Prebilic Cole70aacc42015-07-22 11:28:34 -070037 ng-repeat-complete row-id="{{prop.id}}">
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070038 <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>