aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/web/gui/src/main/webapp/app/view/settings/settings.html
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/onos/web/gui/src/main/webapp/app/view/settings/settings.html')
-rw-r--r--framework/src/onos/web/gui/src/main/webapp/app/view/settings/settings.html52
1 files changed, 52 insertions, 0 deletions
diff --git a/framework/src/onos/web/gui/src/main/webapp/app/view/settings/settings.html b/framework/src/onos/web/gui/src/main/webapp/app/view/settings/settings.html
new file mode 100644
index 00000000..ee069d37
--- /dev/null
+++ b/framework/src/onos/web/gui/src/main/webapp/app/view/settings/settings.html
@@ -0,0 +1,52 @@
+<!-- settings partial HTML -->
+<div id="ov-settings">
+ <div class="tabular-header">
+ <h2>Component Settings ({{tableData.length}} total)</h2>
+ <div class="ctrl-btns">
+ <div class="refresh" ng-class="{active: autoRefresh}"
+ icon icon-size="36" icon-id="refresh"
+ tooltip tt-msg="autoRefreshTip"
+ ng-click="toggleRefresh()"></div>
+ </div>
+ </div>
+
+ <div class="summary-list" onos-table-resize>
+ <div ng-show="loading" class="loading-wheel"
+ icon icon-id="loading" icon-size="75"></div>
+
+ <div class="table-header" onos-sortable-header>
+ <table>
+ <tr>
+ <td colId="component" sortable col-width="200px">Component </td>
+ <td colId="id" sortable>Property </td>
+ <td colId="type" sortable col-width="70px">Type </td>
+ <td colId="value" sortable>Value </td>
+ <td colId="defValue" sortable>Default </td>
+ <td colId="desc" col-width="400px">Description </td>
+ </tr>
+ </table>
+ </div>
+
+ <div class="table-body">
+ <table onos-flash-changes id-prop="id">
+ <tr ng-if="!tableData.length" class="no-data">
+ <td colspan="6">
+ No Settings found
+ </td>
+ </tr>
+
+ <tr ng-repeat="prop in tableData track by $index"
+ ng-repeat-complete row-id="{{prop.id}}">
+ <td>{{prop.component}}</td>
+ <td>{{prop.id}}</td>
+ <td>{{prop.type}}</td>
+ <td>{{prop.value}}</td>
+ <td>{{prop.defValue}}</td>
+ <td>{{prop.desc}}</td>
+ </tr>
+ </table>
+ </div>
+
+ </div>
+
+</div>