blob: c87ba23512035690e6c277be94720878f0afa8c2 [file] [log] [blame]
Matteo Scandolobe342fa2016-06-08 15:54:55 -07001<table class="table">
Matteo Scandolod9fa8062016-06-10 13:46:15 -07002 <tr ng-if="vm.config.showHeader">
3 <th></th>
4 <th>Download Rate</th>
5 <th>Upload Rate</th>
6 <th>Start Date</th>
7 <th>End Date</th>
Matteo Scandoloed9e3ec2016-06-13 15:20:11 -07008 <th></th>
Matteo Scandolod9fa8062016-06-10 13:46:15 -07009 </tr>
Matteo Scandolobe342fa2016-06-08 15:54:55 -070010 <tr ng-repeat="profile in vm.profiles">
Matteo Scandolod9fa8062016-06-10 13:46:15 -070011 <td ng-if="!vm.config.colors">{{profile.Name}}</td>
12 <td ng-if="vm.config.colors">
13 <span ng-style="{color: vm.config.colors[$index]}">{{profile.Name}}</span>
14 </td>
15 <td>
16 {{profile.DlAllocRBRate}}
17 <i class="glyphicon glyphicon-arrow-down"></i>
18 </td>
19 <td>
20 {{profile.UlAllocRBRate}}
21 <i class="glyphicon glyphicon-arrow-up"></i>
22 </td>
Matteo Scandolof25db3b2016-06-29 17:41:27 -070023 <td>{{profile.jsStart | date:'medium'}}</td>
24 <td>{{profile.jsEnd | date:'medium'}}</td>
Matteo Scandoloed9e3ec2016-06-13 15:20:11 -070025 <td ng-if="vm.config.delete">
26 <a href="" ng-click="vm.deleteProfile(profile.Name)">
27 <i class="glyphicon glyphicon-remove"></i>
28 </a>
29 </td>
Matteo Scandolobe342fa2016-06-08 15:54:55 -070030 </tr>
31</table>