php-mpos/public/templates/mpos/statistics/blockfinder/finder_top.tpl
2014-03-01 17:57:43 -07:00

26 lines
1020 B
Smarty

<article class="module width_half" style="min-height: 350px">
<header><h3>Top 25 Blockfinder</h3></header>
<div>
<table class="tablesorter" cellspacing="0">
<thead>
<tr>
<th align="center">Rank</th>
<th>Username</th>
<th align="center">Blocks</th>
<th align="right" style="padding-right: 25px;">Coins Generated</th>
</tr>
</thead>
<tbody>
{assign var=rank value=1}
{section block $BLOCKSSOLVEDBYACCOUNT}
<tr class="{cycle values="odd,even"}">
<td align="center">{$rank++}</td>
<td>{if $BLOCKSSOLVEDBYACCOUNT[block].is_anonymous|default:"0" == 1 && $GLOBAL.userdata.is_admin|default:"0" == 0}anonymous{else}{$BLOCKSSOLVEDBYACCOUNT[block].finder|default:"unknown"|escape}{/if}</td>
<td align="center">{$BLOCKSSOLVEDBYACCOUNT[block].solvedblocks}</td>
<td align="right" style="padding-right: 25px;">{$BLOCKSSOLVEDBYACCOUNT[block].generatedcoins|number_format}</td>
</tr>
{/section}
</tbody>
</table>
</article>