blob: 3486a636107ea8aa8050bd1b2035c479c9ad631e [file] [log] [blame]
<div class="container" ng-controller="sensorController">
<div class="row">
<div class="col-lg-8">
<div class="box box-primary">
<div class="box-header with-border">
<h4>Summary
<h4>
</div>
<div class="box-body">
<table class="table table-striped system-status-table">
<thead>
<tr>
<th>Sensor</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr ng-animate="'animate'" ng-repeat="(sensor_name, value) in sensor_values">
<td class="fit">{{ sensor_name }}</td>
<td class="fit">{{ value }}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>