php-mpos/public/templates/mpos/statistics/graphs/pool.tpl
Sebastian Grewe 02c9be54ed [MAJOR] Changing project name to MPOS
* Adjusted mmcfe-ng occurences in code
* Adjusted Database strucutre to only supply the full structure
* Adjusted default template to MPOS

Addresses #643
2013-10-07 10:10:49 +02:00

24 lines
587 B
Smarty

{if is_array($POOLHASHRATES)}
<div class="tab_content" id="pool">
<table class="visualize" rel="area">
<caption>Pool Hashrate</caption>
<thead>
<tr>
<td></td>
{foreach $POOLHASHRATES as $hour=>$hashrate}
<th scope="col">{$hour|default:"0"}:00</th>
{/foreach}
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Pool</th>
{foreach $POOLHASHRATES as $hour=>$hashrate}
<td>{$hashrate|default:"0"}</td>
{/foreach}
</tr>
</tbody>
</table>
</div>
{/if}