2016-03-04 13:59:34 -06:00
|
|
|
<table id="energy_table" class="table">
|
2016-02-29 18:20:00 -06:00
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th></th>
|
|
|
|
|
<th>Day</th>
|
|
|
|
|
<th>Consumption (kWh)</th>
|
|
|
|
|
<th>Production (kWh)</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
2016-03-02 12:07:31 -06:00
|
|
|
<tr rt-repeat="energy_datum in this.house.energy_data" key="{energy_datum.scoped_id}">
|
2016-02-29 18:20:00 -06:00
|
|
|
<td></td>
|
|
|
|
|
<td>{energy_datum.day_to_s}</td>
|
|
|
|
|
<td>{energy_datum.consumption_to_s}</td>
|
|
|
|
|
<td>{energy_datum.production_to_s}</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|