blob: bc8bf5dca616839bcfe2857a53c744210f16ae9c [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 Cole0c41ba22015-07-06 15:09:48 -070014 <div class="table-header" onos-sortable-header>
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070015 <table>
16 <tr>
Thomas Vachuska3ece3732015-09-22 23:58:50 -070017 <td colId="component" sortable col-width="300px">Component </td>
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070018 <td colId="id" sortable>Property </td>
19 <td colId="type" sortable col-width="70px">Type </td>
20 <td colId="value" sortable>Value </td>
21 <td colId="defValue" sortable>Default </td>
Bri Prebilic Coleb3a6afe2015-06-24 14:10:41 -070022 <td colId="desc" col-width="400px">Description </td>
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070023 </tr>
24 </table>
25 </div>
26
27 <div class="table-body">
Bri Prebilic Cole70aacc42015-07-22 11:28:34 -070028 <table onos-flash-changes id-prop="id">
Bri Prebilic Coleb3a6afe2015-06-24 14:10:41 -070029 <tr ng-if="!tableData.length" class="no-data">
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070030 <td colspan="6">
Jian Li8baf4472016-01-15 15:08:09 -080031 {{annots.no_rows_msg}}
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070032 </td>
33 </tr>
34
Bri Prebilic Cole0bc4de22015-07-20 17:07:55 -070035 <tr ng-repeat="prop in tableData track by $index"
Bri Prebilic Cole70aacc42015-07-22 11:28:34 -070036 ng-repeat-complete row-id="{{prop.id}}">
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070037 <td>{{prop.component}}</td>
38 <td>{{prop.id}}</td>
39 <td>{{prop.type}}</td>
40 <td>{{prop.value}}</td>
41 <td>{{prop.defValue}}</td>
42 <td>{{prop.desc}}</td>
43 </tr>
44 </table>
45 </div>
46
47 </div>
48
49</div>