40 lines
1.3 KiB
HTML
40 lines
1.3 KiB
HTML
{{define "specific"}}
|
|
<h1>Transaction</h1>
|
|
<div class="alert alert-data">
|
|
<span class="ellipsis data">{{.Txid}}</span>
|
|
</div>
|
|
<h3>Summary</h3>
|
|
<div class="data-div">
|
|
<table class="table data-table">
|
|
<tbody>
|
|
{{if .Confirmations}}<tr>
|
|
<td style="width: 25%;">Mined Time</td>
|
|
<td class="data">{{formatUnixTime .Blocktime}}</td>
|
|
</tr>{{end}}
|
|
<tr>
|
|
<td style="width: 25%;">In Block</td>
|
|
<td class="ellipsis data">{{if .Confirmations}}{{.Blockhash}}{{else}}Unconfirmed{{end}}</td>
|
|
</tr>
|
|
{{if .Confirmations}}<tr>
|
|
<td>In Block Height</td>
|
|
<td class="data">{{.Blockheight}}</td>
|
|
</tr>{{end}}
|
|
<tr>
|
|
<td>Total Input</td>
|
|
<td class="data">{{formatAmount .ValueIn}} {{.CoinShortcut}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Total Output</td>
|
|
<td class="data">{{formatAmount .ValueOut}} {{.CoinShortcut}}</td>
|
|
</tr>
|
|
{{if .Fees}}<tr>
|
|
<td>Fees</td>
|
|
<td class="data">{{formatAmount .Fees}} {{.CoinShortcut}}</td>
|
|
</tr>{{end}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<h3>Details</h3>
|
|
<div class="data-div">
|
|
{{template "txdetail" .}} {{end}}
|
|
</div> |