Skip to content

Commit

Permalink
[UPDATE] style change for addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
iAmShorty committed Feb 15, 2014
1 parent 2acf838 commit 45d79d0
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions public/templates/mpos/admin/wallet/default.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
<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">
<article class="module width_full">
<header><h3>Account: {$NAME|default:"Default"}</h3></header>
<article class="module width_3_quarter">
<article class="module width_quarter">
<header><h3>Balance Info</h3></header>
<table width="40%" class="tablesorter" cellspacing="0">
<tr>
Expand All @@ -75,9 +75,13 @@
<table class="tablesorter" cellspacing="0">
<tbody>
{foreach from=$ACCOUNTADDRESSES[$ACCOUNT] key=ACCOUNT1 item=ADDRESS1}
<tr>
{if $ADDRESS1@iteration is even by 1}
<td align="left" style="padding-right: 25px;">{$ADDRESS1}</td>
</tr>
{else}
<tr>
<td align="left" style="padding-right: 25px;">{$ADDRESS1}</td>
{/if}
{/foreach}
</tbody>
</table>
Expand Down

0 comments on commit 45d79d0

Please sign in to comment.