<div class="cbb">
<h3>Current Milliways Users</h3>
{if $people|@count < 1}
<p>No-one logged on to Milliways</p>
{else}
<ul>
    {foreach name=people from=$people key=personnum item=person}
    <li>{$person.username}<small>{$person.idle} idle</small></li>
    {/foreach}
</ul>
{/if}
</div>