From 63fd852beb1d545a70e2c72d9e2bb6444025372f Mon Sep 17 00:00:00 2001 From: Ben Roberts Date: Sat, 17 Dec 2011 01:22:00 +0000 Subject: [PATCH] Display additional detail for each incident. Display the incident status next to the description. --- source/webui/templates/home.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/webui/templates/home.tpl b/source/webui/templates/home.tpl index 93649b4..f4f6b16 100644 --- a/source/webui/templates/home.tpl +++ b/source/webui/templates/home.tpl @@ -8,7 +8,7 @@ {$site->name()} ({$incidents|count}) {foreach from=$incidents item=incident}
- {$incident->description()} + {StatusBoard_Status::name($incident->status())}: {$incident->description()}
{/foreach}