blob: 09f1cadfde5f22491f94773044fb9f39b563985a [file] [log] [blame]
Ed Tanouscc5a37f2017-05-11 10:27:23 -07001<div class="container" ng-controller="sensorController">
2 <div class="row">
3 <div class="col-lg-8">
4 <div class="box box-primary">
5 <div class="box-header with-border">
6 <h4>Summary
7 <h4>
8 </div>
9 <div class="box-body">
10 <table class="table table-striped system-status-table">
11 <thead>
12 <tr>
13 <th>Sensor</th>
14 <th>Value</th>
15 </tr>
16 </thead>
17 <tbody>
18 <tr ng-repeat="(sensor_name, value) in sensor_values">
19 <td class="fit">{{ sensor_name }}</td>
20 <td class="fit">{{ value }}</td>
21 </tr>
22 </tbody>
23 </table>
24 </div>
25 </div>
26 </div>
27 </div>
28</div>