Newer
Older
Graham Cole
committed
<div class="cbb">
<h3>Current Milliways Users</h3>
<p>No-one active on Milliways</p>
Graham Cole
committed
<ul>
{foreach name=people from=$people key=personnum item=person}
Graham Cole
committed
<li>{$person.username} <small>({$person.idle} idle)</small></li>
Graham Cole
committed
</ul>
Graham Cole
committed
</div>
<div class="cbb">
<h3>Filthy Milliways Idlers</h3>
{if $idlers|@count < 1}
<p>Everyone's awake..!</p>
{else}
<ul>
{foreach name=idlers from=$idlers item=person}
<li>{$person.username} <small>({$person.idle} idle)</small></li>
{/foreach}
</ul>
{/if}
</div>