blob: a6b48d328bafc80830f88781e6c7d6aff207fec9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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>
|