46 lines
1.2 KiB
Smarty
46 lines
1.2 KiB
Smarty
<!--
|
|
{if is_array($YOURHASHRATES) && is_array($POOLHASHRATES)}
|
|
<div class="tab-pane fade in" id="both">
|
|
<div class="panel-heading">
|
|
Your vs Pool Hashrate
|
|
</div>
|
|
<div class="panel-body">
|
|
<table class="visualize" rel="area">
|
|
<thead>
|
|
<tr>
|
|
<td></td>
|
|
{foreach $YOURHASHRATES as $hour=>$hashrate}
|
|
<th scope="col">{$hour|default:"0"}:00</th>
|
|
{/foreach}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row">{$smarty.session.USERDATA.username}</th>
|
|
{foreach $YOURHASHRATES as $hour=>$hashrate}
|
|
<td>{$hashrate|default:"0"}</td>
|
|
{/foreach}
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Pool</th>
|
|
{foreach $POOLHASHRATES as $hour=>$hashrate}
|
|
<td>{$hashrate|default:"0"}</td>
|
|
{/foreach}
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<div id="both-area-chart"></div>
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
-->
|
|
{if is_array($YOURHASHRATES) && is_array($POOLHASHRATES)}
|
|
<div class="tab-pane fade in" id="both">
|
|
<div class="panel-heading">
|
|
Your vs. Pool Hashrate
|
|
</div>
|
|
<div class="panel-body">
|
|
<div id="both-area-chart"></div>
|
|
</div>
|
|
</div>
|
|
{/if} |