- Timestamp:
- 04/06/17 11:10:53 (8 years ago)
- Location:
- trunk/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp/groups/details/groupDetails.cshtml
r12780 r14828 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> -
trunk/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp/users/details/userDetails.cshtml
r12584 r14828 68 68 </div> 69 69 <div class="panel-body"> 70 <table class="table table-hover table-condensed" >70 <table class="table table-hover table-condensed" ts-wrapper> 71 71 <thead> 72 72 <tr> 73 73 <th>#</th> 74 <th >Job Name</th>75 <th >Date Created</th>74 <th ts-criteria="Name">Job Name</th> 75 <th ts-criteria="DateCreated">Date Created</th> 76 76 <th>Progress</th> 77 77 <th></th> 78 78 </tr> 79 79 </thead> 80 <tr ng-repeat="job in jobs" >80 <tr ng-repeat="job in jobs" ts-repeat> 81 81 <td>{{$index + 1}}</td> 82 82 <td>{{job.Name}}</td> … … 105 105 </div> 106 106 <div class="panel-body"> 107 <table class="table table-hover table-condensed" >107 <table class="table table-hover table-condensed" ts-wrapper> 108 108 <thead> 109 109 <tr> 110 110 <th>#</th> 111 <th >Job Name</th>112 <th >Date Created</th>113 <th >Date Completed</th>114 <th >Tasks</th>111 <th ts-criteria="Name">Job Name</th> 112 <th ts-criteria="DateCreated">Date Created</th> 113 <th ts-criteria="DateCompleted">Date Completed</th> 114 <th ts-criteria="TotalTasks">Tasks</th> 115 115 <th></th> 116 116 </tr> 117 117 </thead> 118 <tr ng-repeat="job in completedJobPage.Jobs" >118 <tr ng-repeat="job in completedJobPage.Jobs" ts-repeat> 119 119 <td>{{($index + 1)+((completedJobCurPage-1)*(completedJobPageSize))}}</td> 120 120 <td>{{job.Name}}</td>
Note: See TracChangeset
for help on using the changeset viewer.