blob: e782a6a75e76a7fd7530405239635d389bd43a29 [file] [log] [blame]
<table class="table">
<tr ng-if="vm.config.showHeader">
<th></th>
<th>Download Rate</th>
<th>Upload Rate</th>
<th>Start Date</th>
<th>End Date</th>
</tr>
<tr ng-repeat="profile in vm.profiles">
<td ng-if="!vm.config.colors">{{profile.Name}}</td>
<td ng-if="vm.config.colors">
<span ng-style="{color: vm.config.colors[$index]}">{{profile.Name}}</span>
</td>
<td>
{{profile.DlAllocRBRate}}
<i class="glyphicon glyphicon-arrow-down"></i>
</td>
<td>
{{profile.UlAllocRBRate}}
<i class="glyphicon glyphicon-arrow-up"></i>
</td>
<td>{{profile.Start}}</td>
<td>{{profile.End}}</td>
</tr>
</table>