- Timestamp:
- 07/23/17 11:17:18 (7 years ago)
- Location:
- branches/Async
- Files:
-
- 3 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/groups/details/groupDetails.cshtml
r12780 r15281 173 173 </div> 174 174 <div class="panel-body"> 175 <table class="table table-hover table-condensed" >175 <table class="table table-hover table-condensed" ts-wrapper> 176 176 <thead> 177 177 <tr> 178 178 <th>#</th> 179 <th >Client Name</th>180 <th >Cores</th>181 <th >Cpu Utilization</th>182 <th >Memory</th>183 <th >State</th>179 <th ts-criteria="Name">Client Name</th> 180 <th ts-criteria="UsedCores">Cores</th> 181 <th ts-criteria="CpuUtilization">Cpu Utilization</th> 182 <th ts-criteria="UsedMemory">Memory</th> 183 <th ts-criteria="State">State</th> 184 184 <th></th> 185 185 </tr> 186 186 </thead> 187 <tr ng-repeat="client in clientPage.Clients" >187 <tr ng-repeat="client in clientPage.Clients" ts-repeat> 188 188 <td>{{($index + 1)+((curClientsPage-1)*(clientsPageSize))}}</td> 189 189 <td>{{client.Name}}</td> -
branches/Async/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp/groups/groups.cshtml
r12551 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 >Group Name</th>40 <th >Cores</th>41 <th >Cpu Utilization</th>42 <th >Memory</th>43 <th >Clients</th>39 <th ts-criteria="Name">Group Name</th> 40 <th ts-criteria="UsedCores">Cores</th> 41 <th ts-criteria="CpuUtilization">Cpu Utilization</th> 42 <th ts-criteria="UsedMemory">Memory</th> 43 <th ts-criteria="OnlineClients">Clients</th> 44 44 <th></th> 45 45 </tr> 46 46 </thead> 47 <tr ng-repeat="group in groupPage.Groups" >47 <tr ng-repeat="group in groupPage.Groups" ts-repeat> 48 48 <td>{{($index + 1)+((curGroupsPage-1)*(groupsPageSize))}}</td> 49 49 <td>{{group.Name}}</td>
Note: See TracChangeset
for help on using the changeset viewer.