summaryrefslogtreecommitdiff
path: root/static/partial-sensor.html
diff options
context:
space:
mode:
authorEd Tanous <ed.tanous@intel.com>2017-05-11 20:27:23 +0300
committerEd Tanous <ed.tanous@intel.com>2017-05-11 20:27:23 +0300
commitcc5a37f7362e8aabb8f21705c8583d2ff19a641d (patch)
tree5608eb4c28bc22aa221aa503916946fa5b79d827 /static/partial-sensor.html
parente2fc45a1cd7645e50754d93ce52ec8935e723007 (diff)
downloadbmcweb-cc5a37f7362e8aabb8f21705c8583d2ff19a641d.tar.xz
incremental
Diffstat (limited to 'static/partial-sensor.html')
-rw-r--r--static/partial-sensor.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/static/partial-sensor.html b/static/partial-sensor.html
new file mode 100644
index 0000000000..09f1cadfde
--- /dev/null
+++ b/static/partial-sensor.html
@@ -0,0 +1,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> \ No newline at end of file