| OLD | NEW |
| 1 {{define "title"}} | 1 {{define "title"}} |
| 2 {{ with .Build.Summary -}} | 2 {{ with .Build.Summary -}} |
| 3 {{ if eq .Status.String "InfraFailure" }} | 3 {{ if eq .Status.String "InfraFailure" }} |
| 4 Exception | 4 Exception |
| 5 {{ else if eq .Status.String "Failure" }} | 5 {{ else if eq .Status.String "Failure" }} |
| 6 Failed | 6 Failed |
| 7 {{ else if eq .Status.String "NotRun" }} | 7 {{ else if eq .Status.String "NotRun" }} |
| 8 Pending | 8 Pending |
| 9 {{ else }} | 9 {{ else }} |
| 10 {{ .Status.String }} | 10 {{ .Status.String }} |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 } | 292 } |
| 293 }; | 293 }; |
| 294 | 294 |
| 295 check($("#showHidden").is(":checked")); | 295 check($("#showHidden").is(":checked")); |
| 296 $("#showHidden").click(function(e) { | 296 $("#showHidden").click(function(e) { |
| 297 check($(this).is(":checked")); | 297 check($(this).is(":checked")); |
| 298 }); | 298 }); |
| 299 }); | 299 }); |
| 300 </script> | 300 </script> |
| 301 {{end}} | 301 {{end}} |
| OLD | NEW |