Feist, James | 694015b | 2017-08-22 13:07:42 -0700 | [diff] [blame^] | 1 | <div class="container" ng-controller="systemConfigController"> |
| 2 | <div class="row"> |
| 3 | <div class="col-md-12"> |
| 4 | <div class="box box-primary"> |
| 5 | <div class="box-header with-border"> |
| 6 | <h4>System Configuration |
| 7 | </h4> |
| 8 | <div class="horizontal-scroll box-body"> </div> |
| 9 | |
| 10 | <table class="table table-striped system-status-table" st-table="smartTableData"> |
| 11 | <thead> |
| 12 | <tr class="sortable "> |
| 13 | <th class="table-id" st-sort="id" st-sort-default="true">#</th> |
| 14 | <th st-sort="name">Name</th> |
| 15 | </tr> |
| 16 | </thead> |
| 17 | <tbody> |
| 18 | <tr ng-repeat="(key, item) in configuration"> |
| 19 | <td class="table-id">{{$index}}</td> |
| 20 | <td>{{item.name}}</td> |
| 21 | </tr> |
| 22 | </tbody> |
| 23 | </table> |
| 24 | </div> |
| 25 | </div> |
| 26 | </div> |
| 27 | </div> |
| 28 | </div> |