[FIX] fixed divs in transactions

This commit is contained in:
iAmShorty 2014-03-12 13:22:22 +01:00
parent 3f028a2fdb
commit b3009012a0

View File

@ -37,7 +37,6 @@
<i class="fa fa-clock-o fa-fw"></i> Transaction History <i class="fa fa-clock-o fa-fw"></i> Transaction History
</div> </div>
<div class="panel-body no-padding"> <div class="panel-body no-padding">
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-striped table-bordered table-hover"> <table class="table table-striped table-bordered table-hover">
<thead> <thead>
@ -66,9 +65,13 @@
$TRANSACTIONS[transaction].type == 'Debit_AP' OR $TRANSACTIONS[transaction].type == 'Debit_AP' OR
$TRANSACTIONS[transaction].type == 'TXFee' OR $TRANSACTIONS[transaction].type == 'TXFee' OR
$TRANSACTIONS[transaction].confirmations >= $GLOBAL.confirmations $TRANSACTIONS[transaction].confirmations >= $GLOBAL.confirmations
}<span class="label label-success">Confirmed</span> }
{else if $TRANSACTIONS[transaction].confirmations == -1}<span class="label label-danger">Orphaned</span> <span class="label label-success">Confirmed</span>
{else}<span class="label label-warning">Unconfirmed</span>{/if} {else if $TRANSACTIONS[transaction].confirmations == -1}
<span class="label label-danger">Orphaned</span>
{else}
<span class="label label-warning">Unconfirmed</span>
{/if}
</td> </td>
<td><a href="#" onClick="alert('{$TRANSACTIONS[transaction].coin_address|escape}')">{$TRANSACTIONS[transaction].coin_address|truncate:20:"...":true:true}</a></td> <td><a href="#" onClick="alert('{$TRANSACTIONS[transaction].coin_address|escape}')">{$TRANSACTIONS[transaction].coin_address|truncate:20:"...":true:true}</a></td>
{if ! $GLOBAL.website.transactionexplorer.disabled} {if ! $GLOBAL.website.transactionexplorer.disabled}
@ -83,11 +86,10 @@
</tbody> </tbody>
</table> </table>
</div> </div>
</div>
<div class="panel-footer"> <div class="panel-footer">
<h6><b>Debit_AP</b> = Auto Threshold Payment, <b>Debit_MP</b> = Manual Payment, <b>Donation</b> = Donation, <b>Fee</b> = Pool Fees (if applicable)</h6> <h6><b>Debit_AP</b> = Auto Threshold Payment, <b>Debit_MP</b> = Manual Payment, <b>Donation</b> = Donation, <b>Fee</b> = Pool Fees (if applicable)</h6>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
</div>
<div>