php-mpos/public/templates/mmcFE/admin/wallet/default.tpl
Nicolas Schteinschraber 5a377d6106 Issue #537
2013-07-31 03:44:49 -03:00

23 lines
578 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>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"}