aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2022-06-20 14:03:19 +0000
committerAleksandr Nogikh <wp32pw@gmail.com>2022-06-20 17:10:59 +0200
commit0fc5c330fea4b4129567aaa44ea5a134cb850bbb (patch)
treee7b108c1e33ce9f0c0383bc6c4de5e1b1ccb3f11 /dashboard
parent8d15e28d598508dc8a6007d0cdf76b48d8cf8ba0 (diff)
dashboard: show console output for successful patch tests
Right now it's sent by email, but still not displayed on the web page.
Diffstat (limited to 'dashboard')
-rw-r--r--dashboard/app/templates.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/dashboard/app/templates.html b/dashboard/app/templates.html
index 1ea3fbcad..bc3ae3ded 100644
--- a/dashboard/app/templates.html
+++ b/dashboard/app/templates.html
@@ -404,11 +404,10 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the
{{if $job.ErrorLink}}
{{link $job.ErrorLink "error"}}
{{else if $job.LogLink}}
- {{link $job.LogLink "log"}}
+ {{link $job.LogLink "job log"}}
({{if $job.Commit}}1{{else}}{{len $job.Commits}}{{end}})
{{else if $job.CrashTitle}}
{{optlink $job.CrashReportLink "report"}}
- {{optlink $job.CrashLogLink "log"}}
{{else if formatTime $job.Finished}}
OK
{{else if formatTime $job.Started}}
@@ -416,6 +415,9 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the
{{else}}
pending
{{end}}
+ {{if $job.CrashLogLink}}
+ {{optlink $job.CrashLogLink "log"}}
+ {{end}}
</td>
</tr>
{{end}}