31 lines
1.1 KiB
Smarty
Executable File
31 lines
1.1 KiB
Smarty
Executable File
<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 table-striped table-bordered table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>Rank</th>
|
|
<th>Username</th>
|
|
<th>Blocks</th>
|
|
<th style="padding-right: 25px;">Coins Generated</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{assign var=rank value=1}
|
|
{section block $BLOCKSSOLVEDBYACCOUNT}
|
|
<tr>
|
|
<td>{$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>{$BLOCKSSOLVEDBYACCOUNT[block].solvedblocks}</td>
|
|
<td style="padding-right: 25px;">{$BLOCKSSOLVEDBYACCOUNT[block].generatedcoins|number_format}</td>
|
|
</tr>
|
|
{/section}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|