insight-ui-zcash/public/views/transaction.html

55 lines
1.6 KiB
HTML
Raw Normal View History

2014-01-17 11:49:08 -08:00
<section data-ng-controller="transactionsController" data-ng-init="findThis()">
<h1>
2014-01-17 11:18:27 -08:00
Transaction
<small>View information about a bitcoin transaction</small>
</h1>
2014-01-17 11:18:27 -08:00
<div class="block-tx">
2014-01-20 12:39:27 -08:00
<div data-ng-include src="'/views/transaction/tx.html'"></div>
2014-01-17 11:18:27 -08:00
</div><!-- END OF BLOCK-TX -->
<div class="row m50v">
<div data-ng-class="{'col-md-6':!tx.isCoinBase}">
<h3>Summary</h3>
2014-01-20 12:51:13 -08:00
<table class="table" style="table-layout: fixed">
2014-01-17 11:18:27 -08:00
<tbody>
<tr>
<td><strong> Size </strong></td>
<td class="text-muted text-right">{{tx.size}} (bytes)</td>
</tr>
<tr>
<td><strong>Received Time </strong></td>
<td class="text-muted text-right">{{tx.time * 1000|date:'medium'}}</td>
</tr>
<tr>
2014-01-20 12:39:27 -08:00
<td><strong>Block </strong>
<td class="text-muted text-right">
2014-01-20 12:51:13 -08:00
<a href="/#!/block/{{tx.blockhash}}" class=" ellipsis">{{tx.blockhash}}</a>
2014-01-17 11:18:27 -08:00
</tbody>
</table>
</div>
<div class="col-md-6" data-ng-show="!tx.isCoinBase">
<h3>Inputs and Outputs</h3>
<table class="table">
<tbody>
<tr>
<td><strong>Total Input</strong></td>
<td class="text-muted text-right">{{tx.valueIn}} BTC</td>
</tr>
<tr>
<td><strong>Total Output</strong></td>
<td class="text-muted text-right">{{tx.valueOut}} BTC</td>
</tr>
<tr>
<td><strong>Fees</strong></td>
<td class="text-muted text-right">{{tx.feeds}} BTC</td>
</tr>
</tbody>
</table>
</div>
2014-01-20 13:11:50 -08:00
</div>
</section>