- Timestamp:
- 07/23/17 11:17:18 (7 years ago)
- Location:
- branches/Async
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Async
- Property svn:ignore
-
old new 24 24 protoc.exe 25 25 obj 26 .vs
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/Async/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp/clients/clients.cshtml
r12780 r15281 33 33 </div> 34 34 <div class="panel-body"> 35 <table class="table table-hover table-condensed" >35 <table class="table table-hover table-condensed" ts-wrapper> 36 36 <thead> 37 37 <tr> 38 38 <th>#</th> 39 <th >Client Name</th>40 <th >Group Name</th>41 <th >Cores</th>42 <th >Cpu Utilization</th>43 <th >Memory</th>44 <th >State</th>39 <th ts-criteria="Name">Client Name</th> 40 <th ts-criteria="GroupName">Group Name</th> 41 <th ts-criteria="UsedCores">Cores</th> 42 <th ts-criteria="CpuUtilization">Cpu Utilization</th> 43 <th ts-criteria="UsedMemory">Memory</th> 44 <th ts-criteria="State">State</th> 45 45 <th></th> 46 46 </tr> 47 47 </thead> 48 <tr ng-repeat="client in clientPage.Clients" >48 <tr ng-repeat="client in clientPage.Clients" ts-repeat> 49 49 <td>{{($index + 1)+((curClientsPage-1)*(clientsPageSize))}}</td> 50 50 <td>{{client.Name}}</td> … … 81 81 </div> 82 82 <div class="panel-body"> 83 <table class="table table-hover table-condensed" >83 <table class="table table-hover table-condensed" ts-wrapper> 84 84 <thead> 85 85 <tr> 86 86 <th>#</th> 87 <th >Client Name</th>88 <th >Group Name</th>89 <th >Cores</th>90 <th >Cpu Utilization</th>91 <th >Memory</th>92 <th >State</th>87 <th ts-criteria="Name">Client Name</th> 88 <th ts-criteria="GroupName">Group Name</th> 89 <th ts-criteria="UsedCores">Cores</th> 90 <th ts-criteria="CpuUtilization">Cpu Utilization</th> 91 <th ts-criteria="UsedMemory">Memory</th> 92 <th ts-criteria="State">State</th> 93 93 <th></th> 94 94 </tr> 95 95 </thead> 96 <tr ng-repeat="client in expiredClientPage.Clients" >96 <tr ng-repeat="client in expiredClientPage.Clients" ts-repeat> 97 97 <td>{{($index + 1)+((curExpiredClientsPage-1)*(expiredClientsPageSize))}}</td> 98 98 <td>{{client.Name}}</td>
Note: See TracChangeset
for help on using the changeset viewer.