Browse Source

Update pending.hbs

master
yuriy0803 2 years ago committed by GitHub
parent
commit
130d0aae85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 17
      www/app/templates/blocks/pending.hbs

17
www/app/templates/blocks/pending.hbs

@ -4,17 +4,18 @@
<table class="table table-condensed table-striped"> <table class="table table-condensed table-striped">
<thead> <thead>
<tr> <tr>
<th>Height</th> <th>{{t "block.height"}}</th>
<th>Login</th> <th>{{t "block.login"}}</th>
<th>Time Found</th> <th>{{t "block.time_found"}}</th>
<th>Variance</th> <th>{{t "block.variance"}}</th>
<th>Shares/Diff</th> <th>{{t "block.shares"}}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
{{#each model.candidates as |block|}} {{#each model.candidates as |block|}}
<tr> <tr>
<td><a href="https://explorer.ellaism.org/block/{{block.height}}" rel="nofollow" target="_blank">{{format-number <td><a href="{{t " links.blockExplorerLink_block"}}{{block.height}}" rel="nofollow"
target="_blank">{{format-number
block.height}}</a></td> block.height}}</a></td>
<td>{{#link-to 'account' block.finder class='hash'}}{{block.finder}}{{/link-to}}</td> <td>{{#link-to 'account' block.finder class='hash'}}{{block.finder}}{{/link-to}}</td>
<td>{{format-date-locale block.timestamp}}</td> <td>{{format-date-locale block.timestamp}}</td>
@ -32,5 +33,5 @@
</table> </table>
</div> </div>
{{else}} {{else}}
<h3>No new blocks yet</h3> <h3>{{t "block.no_new_blocks_yet"}}</h3>
{{/if}} {{/if}}

Loading…
Cancel
Save