Changeset 15973 for branches/2522_RefactorPluginInfrastructure/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp/jobs
- Timestamp:
- 06/28/18 11:13:37 (7 years ago)
- Location:
- branches/2522_RefactorPluginInfrastructure
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2522_RefactorPluginInfrastructure
- Property svn:ignore
-
old new 24 24 protoc.exe 25 25 obj 26 .vs
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/2522_RefactorPluginInfrastructure/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp/jobs/jobs.cshtml
r12778 r15973 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 >Job Name</th>39 <th ts-criteria="Name">Job Name</th> 40 40 @if (Request.IsAuthenticated && User.IsInRole(HiveRoles.Administrator)) { 41 <th >Username</th>41 <th ts-criteria="UserName">Username</th> 42 42 } 43 <th >Date Created</th>44 <th >Progress</th>43 <th ts-criteria="DateCreated">Date Created</th> 44 <th ts-criteria="CompletedTasks / TotalTasks">Progress</th> 45 45 <th></th> 46 46 </tr> 47 47 </thead> 48 48 @if (Request.IsAuthenticated && User.IsInRole(HiveRoles.Administrator)) { 49 <tr ng-repeat="job in allUsersJobs" >49 <tr ng-repeat="job in allUsersJobs" ts-repeat> 50 50 <td>{{$index + 1}}</td> 51 51 <td>{{job.Name}}</td> … … 65 65 </tr> 66 66 } else { 67 <tr ng-repeat="job in jobs" >67 <tr ng-repeat="job in jobs" ts-repeat> 68 68 <td>{{$index + 1}}</td> 69 69 <td>{{job.Name}}</td> … … 93 93 </div> 94 94 <div class="panel-body"> 95 <table class="table table-hover table-condensed" >95 <table class="table table-hover table-condensed" ts-wrapper> 96 96 <thead> 97 97 <tr> 98 98 <th>#</th> 99 <th >Job Name</th>100 <th >Date Created</th>101 <th >Date Completed</th>102 <th >Tasks</th>99 <th ts-criteria="Name">Job Name</th> 100 <th ts-criteria="DateCreated">Date Created</th> 101 <th ts-criteria="DateCompleted">Date Completed</th> 102 <th ts-criteria="TotalTasks|parseInt">Tasks</th> 103 103 <th></th> 104 104 </tr> 105 105 </thead> 106 <tr ng-repeat="job in completedJobPage.Jobs" >106 <tr ng-repeat="job in completedJobPage.Jobs" ts-repeat> 107 107 <td>{{($index + 1)+((completedJobCurPage-1)*(completedJobPageSize))}}</td> 108 108 <td>{{job.Name}}</td>
Note: See TracChangeset
for help on using the changeset viewer.