2016-03-04 13:59:34 -06:00
|
|
|
<table id="power_table" class="table">
|
2016-02-29 18:20:00 -06:00
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th></th>
|
|
|
|
|
<th>Time</th>
|
|
|
|
|
<th>Consumption (W)</th>
|
|
|
|
|
<th>Production (W)</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
2016-03-04 13:59:34 -06:00
|
|
|
<tr rt-repeat="power_datum in this.house.power_data" key="{power_datum.scoped_id}">
|
2016-02-29 18:20:00 -06:00
|
|
|
<td></td>
|
|
|
|
|
<td>{power_datum.time_to_s}</td>
|
|
|
|
|
<td>{power_datum.consumption_to_s}</td>
|
|
|
|
|
<td>{power_datum.production_to_s}</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|