Updated linking from homepage to single status page, links to section for that date when clicked, tidied up to ui bits and bobs

Signed-off-by: Nathan Booth <nath.booth@gmail.com>
This commit is contained in:
Nathan Booth
2011-12-31 11:46:47 +00:00
parent 1fe73f3426
commit d243bd65d2
5 changed files with 18 additions and 12 deletions

View File

@@ -20,8 +20,8 @@
<div class="span11 column">
<p style="padding-top:10px;"><b>Service:</b> {$service->name|escape:html}</p>
<p><b>Site:</b> {$site->name|escape:html}</p>
<p><b>Opened:</b> {$incident->start_time|date_format:'h:i:s y-m-d'}</p>
<p><b>Estimated End:</b> {$incident->estimated_end_time|date_format:'h:i:s y-m-d'}</p>
<p><b>Opened:</b> {$incident->start_time|date_format:'h:i d-M-y'}</p>
<p><b>Estimated End:</b> {ucwords(StatusBoard_DateTime::fuzzyTime($incident->estimated_end_time))}</p>
</div>
</div>
@@ -31,7 +31,7 @@
<p>The table display an audit log of changes to this incident</p>
</div><!--/New Service description-->
<div class="span11 column">
<table>
<table class="bordered-table">
<thead>
<th>Date/Time</th>
<th>Status</th>
@@ -41,8 +41,8 @@
{foreach from=$statuses item=status}
<tr>
<td>
{StatusBoard_DateTime::fuzzyTime($status->ctime)}<br />
<em>{$status->ctime|date_format:'y-m-d h:i:s'}</em>
{ucwords(StatusBoard_DateTime::fuzzyTime($status->ctime))}<br />
<em>{$status->ctime|date_format:'h:i d-M-y'}</em>
</td>
<td>{StatusBoard_Status::name($status->status)}</td>
<td>{$status->description|escape:html}</td>