Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/26/15 18:02:03 (9 years ago)
Author:
dglaser
Message:

#2388:

HeuristicLab.Services.WebApp.Statistics-3.3:

  • added groups page
  • improved jobs, clients and users pages

HeuristicLab.Services.WebApp-3.3:

  • merged from trunk
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp/clients/clients.cshtml

    r12516 r12525  
    1414    <li class="active">
    1515        <a ng-href="#/statistics/clients">Clients</a>
     16    </li>
     17    <li>
     18        <a ng-href="#/statistics/groups">Groups</a>
    1619    </li>
    1720    </ul>
     
    3134                            <th>#</th>
    3235                            <th>Client Name</th>
     36                            <th>Group Name</th>
    3337                            <th>Cores</th>
    3438                            <th>Cpu Utilization</th>
     
    4044                            <td>{{($index + 1)+((curClientsPage-1)*(clientsPageSize))}}</td>
    4145                            <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>
    4250                            <td>{{client.UsedCores}} / {{client.TotalCores}}</td>
    4351                            <td>{{client.CpuUtilization | number: 2}} %</td>
Note: See TracChangeset for help on using the changeset viewer.