php-mpos/public/templates/bootstrap/statistics/blockfinder/finder_top.tpl
2014-02-27 17:45:48 +01:00

31 lines
1.1 KiB
Smarty

<div class="col-lg-6">
<div class="panel panel-info">
<div class="panel-heading">
Top 25 Blockfinder
</div>
<div class="panel-body">
<table class="table">
<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>
</div>
</div>
</div>