summaryrefslogtreecommitdiffstats
path: root/static/partial-sensor.html
blob: 09f1cadfde5f22491f94773044fb9f39b563985a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<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>
OpenPOWER on IntegriCloud