blob: 1f5ff11a1bb55b8c6be5aa226d0c805ff2bb55b4 [file] [log] [blame]
Matteo Scandolo5dd94182015-12-09 17:09:55 -08001<div ng-show="vm.loader" class="loader">Loading</div>
2
3<section ng-if="!vm.loader && !vm.error">
4
5 <div class="alert alert-danger" ng-if="vm.stats.length == 0">
6 No result
7 </div>
8
9 <table class="table" ng-if="vm.stats.length > 0">
10 <tr>
11 <th>Type:</th>
12 <th>Meter:</th>
13 <th>Unit:</th>
14 <th>Value:</th>
15 </tr>
16 <tr ng-repeat="item in vm.stats">
Matteo Scandolod9e1c412015-12-15 14:37:27 -080017 <td>{{item.category}}</td>
Matteo Scandolo5dd94182015-12-09 17:09:55 -080018 <td>{{item.meter}}</td>
19 <td>{{item.unit}}</td>
20 <td>{{item.value}}</td>
21 </tr>
22 </table>
23</section>
24
25<section ng-if="!vm.loader && vm.error">
26 <div class="alert alert-danger">
27 {{vm.error}}
28 </div>
29</section>