aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/app/main.html
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2017-11-18 18:54:17 +0100
committerDmitry Vyukov <dvyukov@google.com>2017-11-19 11:58:17 +0100
commite93131fcce06b64b89ccf4fa166b82dec6e7480d (patch)
tree862a121dda882d90266ca51af0b899a3c66c8323 /dashboard/app/main.html
parentbf82068946b108f116ac203b4a6e3c4c5ddabbf0 (diff)
dashboard/app: remember job links
Remember link for jobs. Check that mailing list is in CC when we accept commands.
Diffstat (limited to 'dashboard/app/main.html')
-rw-r--r--dashboard/app/main.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard/app/main.html b/dashboard/app/main.html
index 56ee285ee..ea1eec7c9 100644
--- a/dashboard/app/main.html
+++ b/dashboard/app/main.html
@@ -55,7 +55,7 @@
</tr>
{{range $job := $.Jobs}}
<tr>
- <td class="time">{{formatTime $job.Created}}</td>
+ <td class="time">{{if $job.Link}}<a href="{{$job.Link}}">{{formatTime $job.Created}}</a>{{else}}{{formatTime $job.Created}}{{end}}</td>
<td class="time">{{formatTime $job.Started}}{{if gt $job.Attempts 1}} ({{$job.Attempts}}){{end}}</td>
<td class="time">{{formatTime $job.Finished}}</td>
<td>{{$job.User}}</td>