{{define "title"}}{{.Title}}{{end}} {{define "content"}} {{template "host_chrome" .}} {{$page := .Page}} {{$host := $page.Host}}

Recent jobs for this host — backups, prunes, checks, restores, repo init/probe, agent updates. Newest first, limited to the last 100. Click a row for the full log.

{{if eq (len $page.Jobs) 0}}

No jobs yet.

Trigger a backup from the Sources tab, or wait for a schedule to fire — jobs appear here as soon as they're queued.

{{else}}
Kind
Status
Actor
Started
Duration
{{range $i, $j := $page.Jobs}}
{{$j.Kind}}
{{if eq $j.Status "succeeded"}} succeeded {{else if eq $j.Status "failed"}} failed {{else if eq $j.Status "cancelled"}} cancelled {{else if eq $j.Status "running"}} running {{else}} {{$j.Status}} {{end}}
{{$j.ActorKind}}
{{if $j.StartedAt}}{{relTime $j.StartedAt}}{{else}}queued{{end}}
{{if and $j.StartedAt $j.FinishedAt}}{{durationHuman $j.StartedAt $j.FinishedAt}}{{else}}{{end}}
{{end}}
{{end}}
{{end}}