Summary
Running Jobs
{if $running_jobs}
{foreach from=$running_jobs item=job}
{$job->name()} ({$job->currentStatus()->ripProgress()}%)
{/foreach}
{else}
There are no currently running jobs.
{/if}
Queued Jobs
{if $queued_jobs}
{foreach from=$queued_jobs item=job}
{$job->name()}
{/foreach}
{else}
There are no currently running jobs.
{/if}
Recently Completed Jobs
{if $completed_jobs}
{else}
There are no recently completed jobs.
{/if}
Recently Failed Jobs
{if $failed_jobs}
{else}
There are no recently failed jobs.
{/if}