diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2017-11-18 18:54:17 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2017-11-19 11:58:17 +0100 |
| commit | e93131fcce06b64b89ccf4fa166b82dec6e7480d (patch) | |
| tree | 862a121dda882d90266ca51af0b899a3c66c8323 /dashboard/app/main.html | |
| parent | bf82068946b108f116ac203b4a6e3c4c5ddabbf0 (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.html | 2 |
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> |
