From 45fb43950af15641848f9ef5c8eda82083a582f1 Mon Sep 17 00:00:00 2001 From: Sebastian Grewe Date: Thu, 16 Apr 2015 10:38:32 +0200 Subject: [PATCH] [UPDATE] Link to Transaction ID if tx url is enabled --- .../bootstrap/admin/wallet/transactions.tpl | 54 +++++++++++-------- 1 file changed, 32 insertions(+), 22 deletions(-) diff --git a/templates/bootstrap/admin/wallet/transactions.tpl b/templates/bootstrap/admin/wallet/transactions.tpl index fa00110e..f7fcdff3 100644 --- a/templates/bootstrap/admin/wallet/transactions.tpl +++ b/templates/bootstrap/admin/wallet/transactions.tpl @@ -5,29 +5,39 @@ Last {$TRANSACTIONS|count} transactions
- - - - - - - - - - - - +
+
AccountAddressCategoryAmountConfirmationsTime
+ + + + + + + + + + + + {foreach key=KEY item=ARRAY from=$TRANSACTIONS} - - - - - - - + + + + + + + + {/foreach} - -
AccountAddressCategoryAmountConfirmationsTransaction IDTime
{$ARRAY['account']|default:"Default"}{$ARRAY['address']}{$ARRAY['category']|capitalize}{$ARRAY['amount']|number_format:"$PRECISION"}{$ARRAY['confirmations']}{$ARRAY['time']|date_format:$GLOBAL.config.date} -
{$ARRAY['account']|default:"Default"}{$ARRAY['address']}{$ARRAY['category']|capitalize}{$ARRAY['amount']|number_format:"$PRECISION"}{$ARRAY['confirmations']} + {if !$GLOBAL.website.transactionexplorer.disabled} + {$ARRAY['txid']|truncate:20:"...":false:true} + {else} + {$ARRAY['txid']|truncate:20:"...":false:true} + {/if} + {$ARRAY['time']|date_format:$GLOBAL.config.date} +
+ + +