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

39 lines
1.3 KiB
HTML
Raw Normal View History

2017-01-20 02:25:42 +00:00
<h2 style="margin-bottom: 0px">
Transaction pool
2016-04-12 07:15:33 +00:00
</h2>
2017-08-23 22:40:19 +00:00
<h4 style="font-size: 12px; margin-top: 0px">(no of txs: {{mempool_size}}, size: {{mempool_size_kB}} kB, updated every {{ mempool_refresh_time }} seconds)</h4>
2016-04-12 07:15:33 +00:00
<div class="center">
2017-01-22 00:06:28 +00:00
<table class="center" style="width:80%">
2016-05-01 04:32:01 +00:00
<tr>
2016-04-14 00:31:19 +00:00
<td>age [h:m:s]</td>
<td>transaction hash</td>
<td>fee/per_kB [&#181;&#x271]</td>
<!--<td>outputs</td>-->
<td>in/out</td>
2017-01-22 00:05:48 +00:00
<td>tx size [kB]</td>
2016-04-12 07:15:33 +00:00
</tr>
{{#mempooltxs}}
<tr>
2016-04-13 07:00:07 +00:00
<td>{{age}}</td>
2016-04-21 08:38:50 +00:00
<td><a href="/tx/{{hash}}">{{hash}}</a></td>
<td>{{fee}}/{{payed_for_kB}}</td>
<!--<td>{{xmr_outputs}}</td>-->
<td>{{no_inputs}}/{{no_outputs}}</td>
2016-04-13 01:49:09 +00:00
<td>{{txsize}}</td>
2016-04-12 07:15:33 +00:00
</tr>
{{/mempooltxs}}
</table>
2017-01-20 02:25:42 +00:00
{{^mempool_fits_on_front_page}}
{{#partial_mempool_shown}}
<div class="center" style="text-align: center; margin-bottom: 10px">
<a href="/txpool">Only {{no_of_mempool_tx_of_frontpage}} txs shown. Click here to see all of them</a>
2017-01-20 02:48:12 +00:00
</div>
2017-01-20 02:25:42 +00:00
{{/partial_mempool_shown}}
{{/mempool_fits_on_front_page}}
2016-04-12 07:15:33 +00:00
</div>