diff options
Diffstat (limited to 'controller/share/dtf-controller')
-rw-r--r-- | controller/share/dtf-controller/results-stats-templates/html.tmpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/controller/share/dtf-controller/results-stats-templates/html.tmpl b/controller/share/dtf-controller/results-stats-templates/html.tmpl index af06322..d18e564 100644 --- a/controller/share/dtf-controller/results-stats-templates/html.tmpl +++ b/controller/share/dtf-controller/results-stats-templates/html.tmpl @@ -11,7 +11,7 @@ <table class="table table-condensed table-hover"> <thead> <tr> - <th>Run time</th> + <th>Run directory (time is UTC)</th> : for $task_ids.keys() -> $task_id { <th><: $task_id :></th> : } @@ -25,14 +25,14 @@ : } else { <tr> : } - <td><: $result.dirname :></td> + <td><a href="<: $result.dirname :>"><: $result.dirname :></a></td> : for $task_ids.keys() -> $task_id { : if (not defined($result.tasks[$task_id].exit_status)) { <td>NOT AVAILABLE</td> : } elsif ($result.tasks[$task_id].exit_status == 0) { - <td>OK</td> + <td><a href="<: $result.dirname :>/dtf/tasks/<: $task_id :>">OK</a></td> : } else { - <td class="danger">FAIL</td> + <td class="danger"><a href="<: $result.dirname :>/dtf/tasks/<: $task_id :>">FAIL</a></td> : } : } <tr> |