You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
33 lines
1.0 KiB
{{#if model.candidates}} |
|
<h4>Recently Found Blocks</h4> |
|
<div class="table-responsive"> |
|
<table class="table table-condensed table-striped"> |
|
<thead> |
|
<tr> |
|
<th>Height</th> |
|
<th>Login</th> |
|
<th>Time Found</th> |
|
<th>Variance</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
{{#each model.candidates as |block|}} |
|
<tr> |
|
<td><a href="https://explorer.ellaism.org/block/{{block.height}}" rel="nofollow" target="_blank">{{format-number block.height}}</a></td> |
|
<td>{{#link-to 'account' block.login class='hash'}}{{block.login}}{{/link-to}}</td> |
|
<td>{{format-date-locale block.timestamp}}</td> |
|
<td> |
|
{{#if block.isLucky}} |
|
<span class="label label-success">{{format-number block.variance style='percent'}}</span> |
|
{{else}} |
|
<span class="label label-info">{{format-number block.variance style='percent'}}</span> |
|
{{/if}} |
|
</td> |
|
</tr> |
|
{{/each}} |
|
</tbody> |
|
</table> |
|
</div> |
|
{{else}} |
|
<h3>No new blocks yet</h3> |
|
{{/if}}
|
|
|