properly display credit/debit in color

This commit is contained in:
Sebastian Grewe 2013-05-10 15:31:33 +02:00
parent c64f67a8b5
commit 5dc31fe392

View File

@ -25,7 +25,7 @@
<td>{$TRANSACTIONS[transaction].transType}</td>
<td>{$TRANSACTIONS[transaction].sendAddress}</td>
<td>{if $TRANSACTIONS[transaction].assocBlock == 0}n/a{else}{$TRANSACTIONS[transaction].assocBlock}{/if}</td>
<td><font color="{if $TRANSACTIONS[transaction].amount > 0}green{else}red{/if}">{$TRANSACTIONS[transaction].amount}</td>
<td><font color="{if $TRANSACTIONS[transaction].transType == Credit}green{else}red{/if}">{$TRANSACTIONS[transaction].amount}</td>
</tr>
{/section}
</tbody>