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

26 lines
630 B
HTML
Raw Permalink Normal View History

2017-06-22 02:00:38 +00:00
<h2 style="margin-bottom: 0px">
Alternative blocks
</h2>
<h4 style="font-size: 14px; margin-top: 0px">(no of alt blocks: {{no_alt_blocks}})</h4>
<div class="center">
<table class="center" style="width:80%">
<tr>
2017-06-25 01:08:46 +00:00
<td>height</td>
<td>age</td>
2017-06-22 02:00:38 +00:00
<td>hash</td>
2017-06-24 22:32:00 +00:00
<td>txs no</td>
2017-06-22 02:00:38 +00:00
</tr>
{{#blocks}}
<tr>
2017-06-25 01:08:46 +00:00
<td>{{height}}</td>
<td>{{age}}</td>
2017-06-22 02:00:38 +00:00
<td>{{hash}}</td>
2017-06-24 22:32:00 +00:00
<td>{{no_of_txs}}</td>
2017-06-22 02:00:38 +00:00
</tr>
{{/blocks}}
</table>
</div>