php-mpos/public/templates/mmcFE/admin/wallet/default.tpl
Sebastian Grewe 7e4c5dab4e Adding unconfirmed blocks to wallet
First attempt addressing #610, still missing a detection for the actual
confirmation limit required for each block in case one lowers it in the
config.
2013-08-19 09:31:53 +02:00

27 lines
678 B
Smarty

{include file="global/block_header.tpl" BLOCK_HEADER="Wallet Information"}
<table width="350px">
<tr>
<th>Wallet Balance</th>
<td class="right">{$BALANCE|number_format:"8"}</td>
</tr>
<tr>
<th>Locked for users</th>
<td class="right">{$LOCKED|number_format:"8"}</td>
</tr>
<tr>
<th>Unconfirmed</th>
<td class="right">{$UNCONFIRMED|number_format:"8"}</td>
</tr>
<tr>
<th>Liquid Assets</th>
<td class="right">{($BALANCE - $LOCKED)|number_format:"8"}</td>
</tr>
{if $NEWMINT >= 0}
<tr>
<th>PoS New Mint</th>
<td class="right">{$NEWMINT|number_format:"8"}</td>
</tr>
{/if}
</table>
{include file="global/block_footer.tpl"}