<?php
/*
Copyright (C) 2009 DantoBB Team
http://www.dantobb.com
*/
//
// Die when called directly in browser
//
if ( !defined('INCLUDED') )
exit();
//
// Online list templates
//
$templates['header'] = '
<p id="pagelinksothertop">{page_links}</p>
<table class="maintable">
<tr>
<th>{l_Username}</th>
<th>{l_CurrentPage}</th>
<th>{l_LatestUpdate}</th>
</tr>
';
$templates['user'] = '
<tr>
<td>{username}</td>
<td>{current_page}</td>
<td class="minimal">{latest_update}</td>
</tr>
';
$templates['footer'] = '
</table>
<p id="pagelinksotherbottom">{page_links}</p>
';
?>