diff options
| author | spider <spider@bitweaver.org> | 2015-05-05 13:11:31 -0400 |
|---|---|---|
| committer | spider <spider@bitweaver.org> | 2015-05-05 13:11:31 -0400 |
| commit | ac91045436c1d24e75d1898ee96a0387e6962352 (patch) | |
| tree | 15cc327c01ce953fb0957c72e25b2664bfce379b | |
| parent | ea925c4e992f816a5e54afea4cd0c87bb4ca9554 (diff) | |
| download | stats-ac91045436c1d24e75d1898ee96a0387e6962352.tar.gz stats-ac91045436c1d24e75d1898ee96a0387e6962352.tar.bz2 stats-ac91045436c1d24e75d1898ee96a0387e6962352.zip | |
remove table caption, add .table class
| -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"> |
