php-mpos/public/templates/mpos/statistics/pool/general_stats.tpl
2013-10-30 08:38:54 +01:00

105 lines
4.0 KiB
Smarty

<article class="module width_half">
<header><h3>General Statistics</h3></header>
<div class="module_content">
<table width="100%">
<tbody>
<tr>
<th align="left" width="50%">Pool Hash Rate</th>
<td width="70%"><span id="b-hashrate"></span> {$GLOBAL.hashunits.pool}</td>
</tr>
<tr>
<th align="left">Pool Efficiency</td>
<td>{if $GLOBAL.roundshares.valid > 0}{($GLOBAL.roundshares.valid / ($GLOBAL.roundshares.valid + $GLOBAL.roundshares.invalid) * 100)|number_format:"2"}%{else}0%{/if}</td>
</tr>
<tr>
<th align="left">Current Active Workers</td>
<td id="b-workers"></td>
</tr>
<tr>
<th align="left">Current Difficulty</td>
{if ! $GLOBAL.website.chaininfo.disabled}
<td><a href="{$GLOBAL.website.chaininfo.url}" target="_new"><font size="2"><span id="b-diff"></span></font></a></td>
{else}
<td><font size="2"><span id="b-diff"></span></font></td>
{/if}
</tr>
<tr>
<th align="left">Est. Avg. Time per Round</td>
<td>{$ESTTIME|seconds_to_words}</td>
</tr>
<tr>
<th align="left">Est. Shares this Round</td>
<td id="b-target"></td>
</tr>
</tbody>
</table>
</div>
<header><h3>Block Statistics</h3></header>
<div class="module_content">
<table width="100%">
<tbody>
{if ! $GLOBAL.website.blockexplorer.disabled}
<tr>
<th align="left" width="50%">Next Network Block</td>
<td colspan="3">{$CURRENTBLOCK + 1} &nbsp;&nbsp;<font size="1"> (Current: <a href="{$GLOBAL.website.blockexplorer.url}{$CURRENTBLOCKHASH}" target="_new">{$CURRENTBLOCK})</a></font></td>
</tr>
{else}
<tr>
<th align="left">Next Network Block</td>
<td colspan="3">{$CURRENTBLOCK + 1} &nbsp;&nbsp; (Current: {$CURRENTBLOCK})</td>
</tr>
{/if}
<tr>
<th align="left">Last Block Found</td>
<td colspan="3"><a href="{$smarty.server.PHP_SELF}?page=statistics&action=round&height={$LASTBLOCK}" target="_new">{$LASTBLOCK|default:"0"}</a></td>
</tr>
<tr>
<th align="left">Time Since Last Block</td>
<td colspan="3">{$TIMESINCELAST|seconds_to_words}</td>
</tr>
<tr>
<th align="left"></th>
<th align="center">Found</th>
<th align="center">Valid</th>
<th align="center">Orphan</th>
</tr>
<tr>
<th align="left">All Time</td>
<td align="center">{$FOUNDALLVALID + $FOUNDALLORPHAN}</td>
<td align="center">{$FOUNDALLVALID}</td>
<td align="center">{$FOUNDALLORPHAN}</td>
</tr>
<tr>
<th align="left">Last Hour</td>
<td align="center">{$FOUNDLASTHOURVALID + $FOUNDLASTHOURORPHAN}</td>
<td align="center">{$FOUNDLASTHOURVALID}</td>
<td align="center">{$FOUNDLASTHOURORPHAN}</td>
</tr>
<tr>
<th align="left">Last 24 Hours</td>
<td align="center">{$FOUNDLAST24HOURSVALID + $FOUNDLAST24HOURSORPHAN}
<td align="center">{$FOUNDLAST24HOURSVALID}</td>
<td align="center">{$FOUNDLAST24HOURSORPHAN}</td>
</tr>
<tr>
<th align="left">Last 7 Days</td>
<td align="center">{$FOUNDLAST7DAYSVALID + $FOUNDLAST7DAYSORPHAN}</td>
<td align="center">{$FOUNDLAST7DAYSVALID}</td>
<td align="center">{$FOUNDLAST7DAYSORPHAN}</td>
</tr>
<tr>
<th align="left">Last 4 Weeks</td>
<td align="center">{$FOUNDLAST4WEEKSVALID + $FOUNDLAST4WEEKSORPHAN}</td>
<td align="center">{$FOUNDLAST4WEEKSVALID}</td>
<td align="center">{$FOUNDLAST4WEEKSORPHAN}</td>
</tr>
</tbody>
</table>
</div>
<footer>
{if !$GLOBAL.website.api.disabled}<ul><li>These stats are also available in JSON format <a href="{$smarty.server.PHP_SELF}?page=api&action=getpoolstatus&api_key={$GLOBAL.userdata.api_key|default:""}">HERE</a></li></ul>{/if}
</footer>
</article>