onion-wownero-blockchain-ex.../src/templates/block.html

60 lines
1.6 KiB
HTML
Raw Normal View History

2016-04-15 23:07:47 +00:00
<div>
2016-04-16 03:44:58 +00:00
2016-04-16 04:11:17 +00:00
<H4>Block hash (height): {{blk_hash}} ({{blk_height}})</H4>
2016-04-16 03:44:58 +00:00
{{#have_prev_hash}}
2016-04-16 04:11:17 +00:00
<H5>Previous block: <a href="/block/{{prev_hash}}">{{prev_hash}}</a></H5>
2016-04-16 03:44:58 +00:00
{{/have_prev_hash}}
{{#have_next_hash}}
2016-04-16 04:11:17 +00:00
<H5>Next block: <a href="/block/{{next_hash}}">{{next_hash}}</a></H5>
2016-04-16 03:44:58 +00:00
{{/have_next_hash}}
<table class="center" style="width:60%">
<tr>
<td>Timestamp [UCT]:</td><td>{{blk_timestamp}}</td>
<td>Age {{age_format}}:</td><td>{{blk_age}}</td>
2016-04-16 04:11:17 +00:00
<td>Δ [h:m:s]:</td><td>{{delta_time}}</td>
2016-04-16 03:44:58 +00:00
</tr>
<tr>
<td>Major version:</td><td>{{major_ver}}</td>
<td>Minor version:</td><td>{{minor_ver}}</td>
<td>Block size [kB]:</td><td>{{blk_size}}</td>
</tr>
<tr>
<td>nonce:</td><td>{{blk_nonce}}</td>
<td>Minor version:</td><td>{{minor_ver}}</td>
2016-04-17 01:44:24 +00:00
<td>No of txs:</td><td>{{no_txs}}</td>
2016-04-16 03:44:58 +00:00
</tr>
2016-04-17 01:44:24 +00:00
</table>
2016-04-16 03:44:58 +00:00
2016-04-17 01:44:24 +00:00
<h3>Transactions ({{no_txs}})</h3>
<table class="center" style="width:80%">
<tr>
<td>hash</td>
<td>inputs/outputs</td>
<td>fee</td>
<td>mixin no</td>
<td>size [kB]</td>
2016-04-17 01:46:14 +00:00
<td>version</td>
2016-04-17 01:44:24 +00:00
</tr>
{{#blk_txs}}
<tr>
<td>{{hash}}</td>
<td>{{sum_inputs}}/{{sum_outputs}}</td>
<td>{{tx_fee}}</td>
<td>{{mixin}}</td>
<td>{{tx_size}}</td>
2016-04-17 01:46:14 +00:00
<td>{{version}}</td>
2016-04-17 01:44:24 +00:00
</tr>
{{/blk_txs}}
2016-04-16 03:44:58 +00:00
</table>
2016-04-17 01:44:24 +00:00
</div>