{{define "removal_results"}}

Document Removal Results

{{if .Error}}
Error: {{.Error}}
{{else}}

Successfully removed {{.SuccessCount}} document(s).

{{if gt .ErrorCount 0}}

Failed to remove {{.ErrorCount}} document(s).

{{end}} {{if gt .JobsProcessed 0}}

Processed {{.JobsProcessed}} job(s).

{{end}}
{{if .Results}}
{{range $job := .Results}}

Job #{{$job.JobID}}

{{if $job.Success}}
Successfully processed
{{else}}
Error: {{$job.Error}}
{{end}} {{if $job.Files}}
{{range $file := $job.Files}}
{{$file.Name}} {{if $file.Success}} {{else}} {{$file.Error}} {{end}}
{{end}}
{{end}}
{{end}}
{{end}} {{end}}
{{end}}