blob: 8b359d102375f96cca149fefc0fc0a4284a539c4 [file] [log] [blame]
<!--
Copyright 2017-present Open Networking Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<div ng-show="vm.loader" class="loader">Loading</div>
<section ng-if="!vm.loader && !vm.error">
<div class="alert alert-danger" ng-if="vm.stats.length == 0">
No result
</div>
<table class="table" ng-if="vm.stats.length > 0">
<tr>
<th>
<a ng-click="(order == 'category') ? order = '-category' : order = 'category'">Type:</a>
</th>
<th>
<a ng-click="(order == 'resource_name') ? order = '-resource_name' : order = 'resource_name'">Resource:</a>
</th>
<th>
<a ng-click="(order == 'meter') ? order = '-meter' : order = 'meter'">Meter:</a>
</th>
<th>
Unit:
</th>
<th>
Value:
</th>
</tr>
<!-- <tr>
<td>
<input type="text" ng-model="query.category">
</td>
<td>
<input type="text" ng-model="query.resource_name">
</td>
<td>
<input type="text" ng-model="query.meter">
</td>
<td>
<input type="text" ng-model="query.unit">
</td>
<td>
<input type="text" ng-model="query.value">
</td>
</tr> -->
<tr ng-repeat="item in vm.stats | orderBy:order">
<td>{{item.category}}</td>
<td>{{item.resource_name}}</td>
<td>{{item.meter}}</td>
<td>{{item.unit}}</td>
<td>{{item.value}}</td>
</tr>
</table>
</section>
<section ng-if="!vm.loader && vm.error">
<div class="alert alert-danger">
{{vm.error}}
</div>
</section>