Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/11/12 20:44:01 (11 years ago)
Author:
ascheibe
Message:

#1994 added link for all groups

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Services.Hive.Web/Hive-3.3/Status.aspx.cs

    r9025 r9028  
    8181
    8282    slavesLabel.Text = string.Join(", ", onlineSlaves.Select(x => string.Format("<a href=\"?resource={0}\">{0}</a> ({1} %)", x.Name, Math.Round(x.CpuUtilization, 2))));
    83     groupsLabel.Text = string.Join(", ", groups.Select(x => string.Format("<a href=\"?resource={0}\">{0}</a>", x.Name)));
     83    groupsLabel.Text = "<a href=\"Status.aspx\">All</a>, ";
     84    groupsLabel.Text += string.Join(", ", groups.Select(x => string.Format("<a href=\"?resource={0}\">{0}</a>", x.Name)));
    8485
    8586    overallCpuUtilizationLabel.Text = (onlineSlaves.Count() > 0 ? Math.Round(onlineSlaves.Average(s => s.CpuUtilization), 2).ToString() : "0.0") + " %";
Note: See TracChangeset for help on using the changeset viewer.