Skip to content
Snippets Groups Projects
milliways.tpl 560 B
Newer Older
  • Learn to ignore specific revisions
  • <div class="cbb">
    <h3>Current Milliways Users</h3>
    
    {if $people|@count < 1}
    
    <p>No-one active on Milliways</p>
    
        {foreach name=people from=$people key=personnum item=person}
    
        <li>{$person.username} <small>({$person.idle} idle)</small></li>
    
        {/foreach}
    
    <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>