tasks: nicer time format, display more accurate time format on hover

This commit is contained in:
mappu 2017-03-27 20:16:22 +13:00
parent ef252d5cab
commit b7ebd321d0
1 changed files with 3 additions and 2 deletions

View File

@ -62,11 +62,12 @@ func (this *App) Serve_Tasks(w http.ResponseWriter) {
fmt.Fprintf(w,
`<tr>
<td><a href="/task/%s">%s</td>
<td>%s</td>
<td><span title="%s">%s</span></td>
<td>
`,
hesc(ref), hesc(ref),
hesc(time.Unix(t.started, 0).Format(time.RFC822Z)),
hesc(startTime.Format(time.RFC3339)),
hesc(startTime.Format(time.RFC822)),
)
if t.Finished() {