Changeset 15973 for branches/2522_RefactorPluginInfrastructure/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp/users
- Timestamp:
- 06/28/18 11:13:37 (7 years ago)
- Location:
- branches/2522_RefactorPluginInfrastructure
- Files:
-
- 3 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/users/details/userDetails.cshtml
r12584 r15973 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> -
branches/2522_RefactorPluginInfrastructure/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp/users/users.cshtml
r12584 r15973 30 30 </div> 31 31 <div class="panel-body"> 32 <table class="table table-hover table-condensed" >32 <table class="table table-hover table-condensed" ts-wrapper> 33 33 <thead> 34 34 <tr> 35 35 <th>#</th> 36 <th >Username</th>36 <th ts-criteria="Name">Username</th> 37 37 <th></th> 38 38 </tr> 39 39 </thead> 40 <tr ng-repeat="user in users" >40 <tr ng-repeat="user in users" ts-repeat> 41 41 <td>{{$index + 1}}</td> 42 42 <td>{{user.Name}}</td>
Note: See TracChangeset
for help on using the changeset viewer.