diff --git a/public/templates/bootstrap/account/transactions/default.tpl b/public/templates/bootstrap/account/transactions/default.tpl
index d3a3f20c..78280d85 100644
--- a/public/templates/bootstrap/account/transactions/default.tpl
+++ b/public/templates/bootstrap/account/transactions/default.tpl
@@ -57,6 +57,7 @@
{$TRANSACTIONS[transaction].id} |
{$TRANSACTIONS[transaction].timestamp} |
{$TRANSACTIONS[transaction].type} |
+
{if $TRANSACTIONS[transaction].type == 'Credit_PPS' OR
$TRANSACTIONS[transaction].type == 'Fee_PPS' OR
$TRANSACTIONS[transaction].type == 'Donation_PPS' OR
@@ -64,9 +65,10 @@
$TRANSACTIONS[transaction].type == 'Debit_AP' OR
$TRANSACTIONS[transaction].type == 'TXFee' OR
$TRANSACTIONS[transaction].confirmations >= $GLOBAL.confirmations
- } | Confirmed |
- {else if $TRANSACTIONS[transaction].confirmations == -1}Orphaned |
- {else}Unconfirmed | {/if}
+ }Confirmed
+ {else if $TRANSACTIONS[transaction].confirmations == -1}Orphaned
+ {else}Unconfirmed{/if}
+
{$TRANSACTIONS[transaction].coin_address|truncate:20:"...":true:true} |
{if ! $GLOBAL.website.transactionexplorer.disabled}
{$TRANSACTIONS[transaction].txid|truncate:20:"...":true:true} |
diff --git a/public/templates/bootstrap/admin/transactions/default.tpl b/public/templates/bootstrap/admin/transactions/default.tpl
index f89ed6ac..ec9583d4 100644
--- a/public/templates/bootstrap/admin/transactions/default.tpl
+++ b/public/templates/bootstrap/admin/transactions/default.tpl
@@ -100,6 +100,7 @@
{$TRANSACTIONS[transaction].username} |
{$TRANSACTIONS[transaction].timestamp} |
{$TRANSACTIONS[transaction].type} |
+
{if $TRANSACTIONS[transaction].type == 'Credit_PPS' OR
$TRANSACTIONS[transaction].type == 'Fee_PPS' OR
$TRANSACTIONS[transaction].type == 'Donation_PPS' OR
@@ -107,9 +108,10 @@
$TRANSACTIONS[transaction].type == 'Debit_AP' OR
$TRANSACTIONS[transaction].type == 'TXFee' OR
$TRANSACTIONS[transaction].confirmations >= $GLOBAL.confirmations
- } | Confirmed |
- {else if $TRANSACTIONS[transaction].confirmations == -1}Orphaned |
- {else}Unconfirmed | {/if}
+ }Confirmed
+ {else if $TRANSACTIONS[transaction].confirmations == -1}Orphaned
+ {else}Unconfirmed{/if}
+
{$TRANSACTIONS[transaction].coin_address|truncate:20:"...":true:true} |
{if ! $GLOBAL.website.transactionexplorer.disabled}
{$TRANSACTIONS[transaction].txid|truncate:20:"...":true:true} |
diff --git a/public/templates/bootstrap/statistics/blocks/blocks_found_details.tpl b/public/templates/bootstrap/statistics/blocks/blocks_found_details.tpl
index 67154333..96dcfca0 100644
--- a/public/templates/bootstrap/statistics/blocks/blocks_found_details.tpl
+++ b/public/templates/bootstrap/statistics/blocks/blocks_found_details.tpl
@@ -36,13 +36,15 @@
{else}
{$BLOCKSFOUND[block].height} |
{/if}
+
{if $BLOCKSFOUND[block].confirmations >= $GLOBAL.confirmations}
- | Confirmed |
+ Confirmed
{else if $BLOCKSFOUND[block].confirmations == -1}
- Orphan |
+ Orphan
{else}
- {$GLOBAL.confirmations - $BLOCKSFOUND[block].confirmations} left |
+ {$GLOBAL.confirmations - $BLOCKSFOUND[block].confirmations} left
{/if}
+
{if $BLOCKSFOUND[block].is_anonymous|default:"0" == 1 && $GLOBAL.userdata.is_admin|default:"0" == 0}anonymous{else}{$BLOCKSFOUND[block].finder|default:"unknown"|escape}{/if} |
{$BLOCKSFOUND[block].time|date_format:"%d/%m %H:%M:%S"} |
{$BLOCKSFOUND[block].difficulty|number_format:"2"} |