{{ define "partial_jobs_table" }} {{ $jobs := index . "jobs" }} {{ if not $jobs }}

No jobs yet. Submit one to get started.

{{ else }} {{ range $job := $jobs }} {{ end }}
Name Status Progress Frames Format Created Actions
{{ $job.Name }} {{ $job.Status }} {{ progressInt $job.Progress }}% {{ if $job.FrameStart }}{{ derefInt $job.FrameStart }}{{ end }}{{ if $job.FrameEnd }}-{{ derefInt $job.FrameEnd }}{{ end }} {{ if $job.OutputFormat }}{{ derefString $job.OutputFormat }}{{ else }}-{{ end }} {{ formatTime $job.CreatedAt }} {{ if or (eq $job.Status "pending") (eq $job.Status "running") }} {{ end }} {{ if or (eq $job.Status "completed") (eq $job.Status "failed") (eq $job.Status "cancelled") }} {{ end }}
{{ end }} {{ end }}