diff options
Diffstat (limited to 'controller/result_templates')
| -rw-r--r-- | controller/result_templates/html.tmpl | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/controller/result_templates/html.tmpl b/controller/result_templates/html.tmpl deleted file mode 100644 index 8a09ad7..0000000 --- a/controller/result_templates/html.tmpl +++ /dev/null @@ -1,42 +0,0 @@ -<!DOCTYPE html> -<html> -<head> -<meta charset="UTF-8" /> -<meta name="keywords" content="" /> -<title>Results</title> -<link href="https://praiskup.fedorapeople.org/staticdata/patternfly-1.1/css/patternfly.css" rel="stylesheet" media="screen, print"> -</head> -<body> -<div class="table-responsive"> -<table class="table table-condensed table-hover"> -<thead> - <tr> - <th>Run time</th> -: for $task_ids.keys() -> $task_id { - <th><: $task_id :></th> -: } - </tr> -</thead><tbody> -: for $results -> $result { - : if ($result.exit_status) { - <tr class="danger"> - : } else { - <tr> - : } - <td><: $result.dirname :></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> - : } else { - <td class="danger">FAIL</td> - : } - : } - <tr> -:} -</tbody> -</table> -</div> -</body> -</html> |
