- Timestamp:
- 04/06/17 11:10:53 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.