* Added expected vs actual share graph to block stats * Added new small table template for overall stats in pool stats Fixes #91
29 lines
1.1 KiB
Smarty
29 lines
1.1 KiB
Smarty
{include file="global/block_header.tpl" BLOCK_HEADER="Last $BLOCKLIMIT Blocks Found" BLOCK_STYLE="clear:none;"}
|
|
<center>
|
|
<table width="100%" style="font-size:13px;">
|
|
<thead>
|
|
<tr style="background-color:#B6DAFF;">
|
|
<th class="center">Block</th>
|
|
<th>Finder</th>
|
|
<th class="center">Time</th>
|
|
<th class="right">Actual Shares</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{assign var=rank value=1}
|
|
{section block $BLOCKSFOUND}
|
|
<tr class="{cycle values="odd,even"}">
|
|
<td class="center"><a href="{$GLOBAL.blockexplorer}{$BLOCKSFOUND[block].height}" target="_blank">{$BLOCKSFOUND[block].height}</a></td>
|
|
<td>{$BLOCKSFOUND[block].finder|default:"unknown"}</td>
|
|
<td class="center">{$BLOCKSFOUND[block].time|date_format:"%d/%m %H:%M:%S"}</td>
|
|
<td class="right">{$BLOCKSFOUND[block].shares|number_format}</td>
|
|
</tr>
|
|
{/section}
|
|
</tbody>
|
|
</table>
|
|
</center>
|
|
<ul>
|
|
<li>Note: <font color="orange">Round Earnings are not credited until {$GLOBAL.confirmations} confirms.</font></li>
|
|
</ul>
|
|
{include file="global/block_footer.tpl"}
|