You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
682 B

{* $Id$ *}
<div class="table-responsive">
<table class="table">
<tr>
<th>{tr}Group Name{/tr}</th>
<th>{tr}Number of Users{/tr}</th>
<th>{tr}Percentage of Total{/tr}</th>
</tr>
{foreach from=$stats item=stat}
{if $stat.group ne 'Anonymous' and $stat.group ne 'Registered'}
<tr>
<td>{$stat.group|escape}</td>
<td>{$stat.nb}</td>
<td>
{if $params.show_bar eq 'y'}
{if !empty($stat.percent)}
{quotabar length=$stat.percent}
{/if}
{else}
{$stat.percent|string_format:"%.2f"}%
{/if}
</td>
</tr>
{/if}
{/foreach}
</table>
</div>