php-mpos/public/templates/mpos/dashboard/payout_estimates.tpl
Sebastian Grewe ca427b414b [FEATURE] Disable Dashboard and Dashboard API
Allows pools to disable the dashboard and dashboard API completely.
Useful if you are not running a master/load(/load/load) setup to deal
with frequent live queries.

Fixes #876 once merged.
2013-12-04 09:54:11 +01:00

44 lines
1.5 KiB
Smarty

<tr>
<td colspan="2"><b><u>{$GLOBAL.config.currency} Estimates</u></b></td>
</tr>
{if $GLOBAL.config.payout_system != 'pps'}
<tr>
<td><b>Block</b></td>
<td id="b-block" class="right">{$GLOBAL.userdata.estimates.block}</td>
</tr>
<tr>
<td><b>Fees</b></td>
<td id="b-fee" class="right">{$GLOBAL.userdata.estimates.fee}</td>
</tr>
<tr>
<td><b>Donation</b></td>
<td id="b-donation" class="right">{$GLOBAL.userdata.estimates.donation}</td>
</tr>
<tr>
<td><b>Payout</b></td>
<td id="b-payout" class="right">{$GLOBAL.userdata.estimates.payout}</td>
</tr>
{else}
<tr>
<td><b>in 1 hour</b></td>
<td id="b-est1hour" align="left">{$GLOBAL.userdata.estimates.hours1|round:"8"}</td>
</tr>
<tr>
<td><b>in 24 hours</b></td>
<td id="b-est24hours" align="left">{($GLOBAL.userdata.estimates.hours24)|round:"8"}</td>
</tr>
<tr>
<td><b>in 7 days</b></td>
<td id="b-est7days" align="left">{($GLOBAL.userdata.estimates.days7)|round:"8"}</td>
</tr>
<tr>
<td><b>in 14 days</b></td>
<td id="b-est14days" align="left">{($GLOBAL.userdata.estimates.days14)|round:"8"}</td>
</tr>
<tr>
<td><b>in 30 days</b></td>
<td id="b-est30days" align="left">{($GLOBAL.userdata.estimates.days30)|round:"8"}</td>
</tr>
{/if}