diff options
| -rw-r--r-- | templates/user_stats.tpl | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/templates/user_stats.tpl b/templates/user_stats.tpl index f5abda1..01a792c 100644 --- a/templates/user_stats.tpl +++ b/templates/user_stats.tpl @@ -11,19 +11,18 @@ {/foreach} </ul> - <table class="clear data"> - <caption>{$gBitSystem->getConfig('site_title')} {tr}User Registrations{/tr}</caption> + <table class="table"> <tr> <th style="width:20%;" colspan="2">{tr}Period{/tr}</td> <th style="width:80%;">{tr}Number of Registrations{/tr}</td> </tr> {foreach item=reg key=timeframe from=$userStats.per_period} <tr class="{cycle values="even,odd"}"> - <td><a href="{$smarty.const.STATS_PKG_URL}users.php?period={$smarty.request.period}&timeframe={$timeframe|urlencode}">{$timeframe}</td> + <td>{$timeframe}</td> <td> [<a href="{$smarty.const.STATS_PKG_URL}referrers.php?period={$smarty.request.period}&timeframe={$timeframe|urlencode}">Referrers</a>] </td> - <td><div style="width:{math equation="round( ( r / m ) * 100 )" r=$reg m=$userStats.max}%; background:#ff9;padding:0 0 0 5px;"><a href="{$smarty.const.USERS_PKG_URL}admin/index.php?period={$smarty.request.period}&timeframe={$timeframe|urlencode}">{$reg}</a></div></td> + <td><div style="width:{math equation="round( ( r / m ) * 100 )" r=$reg m=$userStats.max}%; background:#ff9;padding:0 0 0 5px;">{booticon iname="icon-user"} <a href="{$smarty.const.USERS_PKG_URL}admin/index.php?period={$smarty.request.period}&timeframe={$timeframe|urlencode}">{$reg}</a></div></td> </tr> {foreachelse} <tr class="norecords"> |
