[UPDATE] style changes

This commit is contained in:
iAmShorty 2014-02-13 17:28:47 +01:00
parent 224af2c9d3
commit 1fd7499856

View File

@ -1,5 +1,5 @@
<article class="module width_full"> <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"> <article class="module width_quarter">
<header><h3>Balance Summary</h3></header> <header><h3>Balance Summary</h3></header>
@ -52,38 +52,39 @@
</article> </article>
</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} {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"> <article class="module width_half">
<header><h3>Balance Info</h3></header> <header><h3>Account: {$NAME|default:"Default"}</h3></header>
<table width="40%" class="tablesorter" cellspacing="0"> <article class="module width_3_quarter">
<tr> <header><h3>Balance Info</h3></header>
<td align="left">Balance</td> <table width="40%" class="tablesorter" cellspacing="0">
<td align="left">{$VALUE|number_format:"8"}</td> <tr>
</tr> <td align="left">Balance</td>
</table> <td align="left">{$VALUE|number_format:"8"}</td>
</article> </tr>
</table>
</article>
{foreach key=ACCOUNT item=ADDRESS from=$ACCOUNTADDRESSES} {foreach key=ACCOUNT item=ADDRESS from=$ACCOUNTADDRESSES}
{if $ACCOUNT == $NAME} {if $ACCOUNT == $NAME}
<article class="module width_3_quarter"> <article class="module width_3_quarter">
<header><h3>Addresses assigned to Account {$ACCOUNT|default:"Default"}</h3></header> <header><h3>Addresses assigned to Account {$ACCOUNT|default:"Default"}</h3></header>
<table class="tablesorter" cellspacing="0"> <table class="tablesorter" cellspacing="0">
<tbody> <tbody>
{foreach from=$ACCOUNTADDRESSES[$ACCOUNT] key=ACCOUNT1 item=ADDRESS1} {foreach from=$ACCOUNTADDRESSES[$ACCOUNT] key=ACCOUNT1 item=ADDRESS1}
<tr> <tr>
<td align="left" style="padding-right: 25px;">{$ADDRESS1}</td> <td align="left" style="padding-right: 25px;">{$ADDRESS1}</td>
</tr> </tr>
{/foreach} {/foreach}
</tbody> </tbody>
</table> </table>
</article> </article>
{/if} {/if}
{/foreach} {/foreach}
</article>
</article>
{/foreach} {/foreach}
</article>
{/if}