Add System Configuration Page
Parses json file and writes entites to page.
Change-Id: I486070deb48e0b447c904542148dbc3721f1facf
diff --git a/static/partial-systemconfig.html b/static/partial-systemconfig.html
new file mode 100644
index 0000000..a6b48d3
--- /dev/null
+++ b/static/partial-systemconfig.html
@@ -0,0 +1,28 @@
+<div class="container" ng-controller="systemConfigController">
+ <div class="row">
+ <div class="col-md-12">
+ <div class="box box-primary">
+ <div class="box-header with-border">
+ <h4>System Configuration
+ </h4>
+ <div class="horizontal-scroll box-body"> </div>
+
+ <table class="table table-striped system-status-table" st-table="smartTableData">
+ <thead>
+ <tr class="sortable ">
+ <th class="table-id" st-sort="id" st-sort-default="true">#</th>
+ <th st-sort="name">Name</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr ng-repeat="(key, item) in configuration">
+ <td class="table-id">{{$index}}</td>
+ <td>{{item.name}}</td>
+ </tr>
+ </tbody>
+ </table>
+ </div>
+ </div>
+ </div>
+ </div>
+</div>