blob: 450331291b3e7be25f9de9c2317fbb01707144c9 [file] [log] [blame]
Ed Tanouscc5a37f2017-05-11 10:27:23 -07001<div class="container" ng-controller="sensorController">
2 <div class="row">
Ed Tanous5fceeb42017-06-28 09:43:09 -07003 <div class="col-md-12">
Ed Tanouscc5a37f2017-05-11 10:27:23 -07004 <div class="box box-primary">
5 <div class="box-header with-border">
6 <h4>Summary
Ed Tanous5fceeb42017-06-28 09:43:09 -07007 </h4>
8 <div class="pull-right">
9 <select class="form-control show-tick" title="Rows on page" selectpicker ng-model="smartTablePageSize" ng-options="i for i in [5,10,25,50,100,500]">
10 </select>
11 </div>
12 <div class="horizontal-scroll box-body"> </div>
13
14 <table class="table table-striped system-status-table" st-table="smartTableData" st-safe-src="rowCollection">
Ed Tanouscc5a37f2017-05-11 10:27:23 -070015 <thead>
Ed Tanous5fceeb42017-06-28 09:43:09 -070016 <tr class="sortable ">
17 <th class="table-id" st-sort="id" st-sort-default="true">#</th>
18 <th st-sort="name">Name</th>
19 <th st-sort="value">Value</th>
20 </tr>
Ed Tanouscc5a37f2017-05-11 10:27:23 -070021 <tr>
Ed Tanous5fceeb42017-06-28 09:43:09 -070022 <th></th>
23 <th><input st-search="name" placeholder="Search Name" class="input-sm form-control search-input" type="search" /></th>
24 <th><input st-search="value" placeholder="Search Value" class="input-sm form-control search-input" type="search" /></th>
Ed Tanouscc5a37f2017-05-11 10:27:23 -070025 </tr>
26 </thead>
27 <tbody>
Ed Tanous5fceeb42017-06-28 09:43:09 -070028 <tr ng-repeat="item in smartTableData">
29 <td class="table-id">{{item.id}}</td>
30 <td>{{item.name}}</td>
31 <td>{{item.value}}</td>
Ed Tanouscc5a37f2017-05-11 10:27:23 -070032 </tr>
33 </tbody>
Ed Tanous5fceeb42017-06-28 09:43:09 -070034 <tfoot>
35 <tr>
36 <td colspan="6" class="text-center">
37 <div st-pagination="" st-items-by-page="smartTablePageSize" st-displayed-pages="7"></div>
38 </td>
39 </tr>
40 </tfoot>
Ed Tanouscc5a37f2017-05-11 10:27:23 -070041 </table>
42 </div>
43 </div>
44 </div>
45 </div>
46</div>