From 532e7873ef4f96aa17883137f553fad6d7f65922 Mon Sep 17 00:00:00 2001 From: Ben Roberts Date: Sat, 24 Sep 2011 17:58:56 +0100 Subject: [PATCH] Show progress bars on the home page for running jobs --- webui/source/templates/home.tpl | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/webui/source/templates/home.tpl b/webui/source/templates/home.tpl index 8e3b714..4856fe0 100644 --- a/webui/source/templates/home.tpl +++ b/webui/source/templates/home.tpl @@ -4,8 +4,26 @@ {if $running_jobs} {foreach from=$running_jobs item=job} -
  • {$job->name()} ({$job->currentStatus()->ripProgress()}%)
  • +
  • {$job->name()} {$job->currentStatus()->ripProgress()}%
  • {/foreach} + {else} There are no currently running jobs. {/if}