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

26 lines
901 B
Smarty

<article class="module width_half" style="min-height: 350px">
<header><h3>Blocks found by own Workers</h3></header>
<div>
<table class="tablesorter" cellspacing="0">
<thead>
<tr>
<th align="center">Rank</th>
<th>Worker</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 $BLOCKSSOLVEDBYWORKER}
<tr class="{cycle values="odd,even"}">
<td align="center">{$rank++}</td>
<td>{$BLOCKSSOLVEDBYWORKER[block].finder|default:"unknown/deleted"|escape}</td>
<td align="center">{$BLOCKSSOLVEDBYWORKER[block].solvedblocks}</td>
<td align="right" style="padding-right: 25px;">{$BLOCKSSOLVEDBYWORKER[block].generatedcoins|number_format}</td>
</tr>
{/section}
</tbody>
</table>
</article>