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

60 lines
1.8 KiB
HTML
Raw Normal View History

2016-05-01 01:51:55 +00:00
<div class="center">
<h3 style="font-size: 12px; margin-top: 20px">
Server time: {{server_timestamp}} |
{{#refresh}}
<a href="/">Autorefresh is ON (10 s)</a>
{{/refresh}}
{{^refresh}}
<a href="/autorefresh">Autorefresh is OFF</a>
{{/refresh}}
</h3>
</div>
{{{mempool_info}}}
{{#is_page_zero}}
2016-05-01 02:13:44 +00:00
<h2>20 recent blocks<!--(height: {{height}})--></h2>
2016-05-01 01:51:55 +00:00
{{/is_page_zero}}
{{^is_page_zero}}
<h2>older blocks<!--(height: {{height}})--></h2>
{{/is_page_zero}}
<div class="center">
<table class="center">
<tr>
<td>height</td>
<td>age {{age_format}} (Δm)</td>
2016-05-01 02:13:44 +00:00
<td>tx hash</td>
2016-05-01 01:51:55 +00:00
<td>fees</td>
<td>outputs</td>
<td>mixins</td>
<td>size [kB]</td>
</tr>
{{#blocks}}
<tr>
<td><a href="/block/{{height}}">{{height}}</a></td>
<td>{{age}} ({{time_delta}})</td>
2016-05-01 02:13:44 +00:00
<td><a href="/tx/{{hash}}">{{hash}}</a></td>
2016-05-01 01:51:55 +00:00
<td>{{fees}}</td>
2016-05-01 02:13:44 +00:00
<td>{{sum_outputs}}</td>
<td>{{mixin}}</td>
<td>{{tx_size}}</td>
2016-05-01 01:51:55 +00:00
</tr>
{{/blocks}}
</table>
<div class="center" style="text-align: center;">
{{^is_page_zero}}
<a href="/page/{{prev_page}}">previous page</a> |
<a href="/">first page</a> |
{{/is_page_zero}}
current page: {{page_no}}/<a href="/page/{{total_page_no}}">{{total_page_no}}</a>
| <a href="/page/{{next_page}}">next page</a>
</div>
</div>