Skip to content

Commit

Permalink
[UPDATE] style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
iAmShorty committed Feb 13, 2014
1 parent 224af2c commit 1fd7499
Showing 1 changed file with 27 additions and 26 deletions.
53 changes: 27 additions & 26 deletions public/templates/mpos/admin/wallet/default.tpl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<article class="module width_full">
<header><h3>Wallet Information - Number of Accounts in Wallet: {$ADDRESSCOUNT|default:"0"}</h3></header>
<header><h3>Wallet Information</h3></header>

<article class="module width_quarter">
<header><h3>Balance Summary</h3></header>
Expand Down Expand Up @@ -52,38 +52,39 @@
</article>
</article>

{if $ADDRESSCOUNT > 1}
<article class="module width_full">
<header><h3>Number of Accounts in Wallet: {$ADDRESSCOUNT|default:"0"}</h3></header>
{foreach key=NAME item=VALUE from=$ACCOUNTS}
<article class="module width_half">
<header><h3>Account: {$NAME|default:"Default"}</h3></header>
<article class="module width_half">
<header><h3>Balance Info</h3></header>
<table width="40%" class="tablesorter" cellspacing="0">
<tr>
<td align="left">Balance</td>
<td align="left">{$VALUE|number_format:"8"}</td>
</tr>
</table>
</article>

<header><h3>Account: {$NAME|default:"Default"}</h3></header>
<article class="module width_3_quarter">
<header><h3>Balance Info</h3></header>
<table width="40%" class="tablesorter" cellspacing="0">
<tr>
<td align="left">Balance</td>
<td align="left">{$VALUE|number_format:"8"}</td>
</tr>
</table>
</article>
{foreach key=ACCOUNT item=ADDRESS from=$ACCOUNTADDRESSES}
{if $ACCOUNT == $NAME}
<article class="module width_3_quarter">
<header><h3>Addresses assigned to Account {$ACCOUNT|default:"Default"}</h3></header>
<table class="tablesorter" cellspacing="0">
<tbody>
<article class="module width_3_quarter">
<header><h3>Addresses assigned to Account {$ACCOUNT|default:"Default"}</h3></header>
<table class="tablesorter" cellspacing="0">
<tbody>
{foreach from=$ACCOUNTADDRESSES[$ACCOUNT] key=ACCOUNT1 item=ADDRESS1}
<tr>
<td align="left" style="padding-right: 25px;">{$ADDRESS1}</td>
</tr>
<tr>
<td align="left" style="padding-right: 25px;">{$ADDRESS1}</td>
</tr>
{/foreach}
</tbody>
</table>
</article>
</tbody>
</table>
</article>
{/if}
{/foreach}

</article>
</article>
{/foreach}


</article>
{/if}

0 comments on commit 1fd7499

Please sign in to comment.