blob: 09f1cadfde5f22491f94773044fb9f39b563985a [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-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>