{if $activitieslog}
<div style="width: 650px; padding-bottom: 15px; ">
<h3>Latest activities...</h3>
<table cellpadding=0 cellspacing=0 width="100%" border=0 style="border: 1px solid #cdcdcd; background-color: #F0F0F0; ">
<tr><th align="left"><u>Time</u></th><th> </th><th align="left"><u>Details</u></th><th align="left"><u>Status</u></th></tr>
{foreach from=$activitieslog item=ld}
<tr><td valign="top"><strong>{$ld.tm}</strong></td><td align="center" valign="top"> </td><td valign="top">{$ld.details}</td><td valign="top">{$ld.status_text}</td></tr>
{/foreach}
</table>
</div>
{else}
<h3>No Activities Found at Log Table</h3>
{/if}
|