Make each job name in the detailed tables be a link to the
(unpublished) logs for that job.
Requested-by: Roger Pau Monné <roger.pau@citrix.com>
Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
$tag = "b" if $info->{Anon} && currently_running($info);
- cell(encode_entities($job), undef, undef, $tag);
+ my $jobcell = encode_entities($job);
+ if ($fl) {
+ my $jurl = "$c{ReportHtmlUnpubBaseUrl}/$fl/$job/";
+ $jobcell = "<a href=\"".encode_entities($jurl)."\">".$jobcell."</a>";
+ }
+ cell($jobcell, undef, undef, $tag);
# Anonymous/rogue jobs may not have a flight or status
if ($fl && $status) {