Changeset 12525 for branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp/clients
- Timestamp:
- 06/26/15 18:02:03 (10 years ago)
- Location:
- branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp/clients
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp/clients/clients.cshtml
r12516 r12525 14 14 <li class="active"> 15 15 <a ng-href="#/statistics/clients">Clients</a> 16 </li> 17 <li> 18 <a ng-href="#/statistics/groups">Groups</a> 16 19 </li> 17 20 </ul> … … 31 34 <th>#</th> 32 35 <th>Client Name</th> 36 <th>Group Name</th> 33 37 <th>Cores</th> 34 38 <th>Cpu Utilization</th> … … 40 44 <td>{{($index + 1)+((curClientsPage-1)*(clientsPageSize))}}</td> 41 45 <td>{{client.Name}}</td> 46 <td> 47 <a ng-show="client.GroupName" ng-href="#/statistics/groups/{{client.GroupId}}">{{client.GroupName}}</a> 48 <span ng-hide="client.GroupName">No Group</span> 49 </td> 42 50 <td>{{client.UsedCores}} / {{client.TotalCores}}</td> 43 51 <td>{{client.CpuUtilization | number: 2}} %</td> -
branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp/clients/details/clientDetails.cshtml
r12516 r12525 14 14 <a ng-href="#/statistics/clients">Clients</a> 15 15 </li> 16 <li> 17 <a ng-href="#/statistics/groups">Groups</a> 18 </li> 16 19 </ul> 17 20 </header> … … 34 37 <tr> 35 38 <td class="text-left">Group:</td> 36 <td ng-show="client.GroupName"> {{client.GroupName}}</td>39 <td ng-show="client.GroupName"><a ng-href="#/statistics/groups/{{client.GroupId}}">{{client.GroupName}}</a></td> 37 40 <td ng-hide="client.GroupName">None</td> 38 41 </tr> … … 253 256 <div class="default-filter-header text-center"> 254 257 <form class="form-inline"> 255 <div class="form-group" >258 <div class="form-group" style="margin-left: 5px; margin-right: 5px;"> 256 259 <label for="fromDate">From: </label> 257 260 <div class="input-group"> … … 262 265 </div> 263 266 </div> 264 <div class="form-group" >265 <label for="fromDate"> To: </label>267 <div class="form-group" style="margin-left: 5px; margin-right: 5px;"> 268 <label for="fromDate">To: </label> 266 269 <div class="input-group"> 267 <input id="fromDate" type="text" class="form-control" datepicker-popup="dd.MM.yyyy" ng-model="toDate" is-open="toIsOpen" datepicker-options="dateOptions" ng-required="true" close-text="Close" />270 <input id="fromDate" type="text" class="form-control" datepicker-popup="dd.MM.yyyy" ng-model="toDate" is-open="toIsOpen" datepicker-options="dateOptions" ng-required="true" close-text="Close" /> 268 271 <span class="input-group-btn"> 269 272 <button type="button" class="btn btn-default" ng-click="openToDateSelection($event)"><i class="glyphicon glyphicon-calendar"></i></button> … … 271 274 </div> 272 275 </div> 273 <div class=" btn-group">274 < labelclass="btn btn-default" ng-click="updateCharts()">276 <div class="form-group" style="margin-left: 5px; margin-right: 5px;"> 277 <button type="button" class="btn btn-default" ng-click="updateCharts()"> 275 278 Apply 276 </ label>279 </button> 277 280 </div> 278 281 </form>
Note: See TracChangeset
for help on using the changeset viewer.