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.
28 lines
636 B
28 lines
636 B
<div class="jumbotron"> |
|
<div class="container"> |
|
<strong>Miners on the list:</strong> <span class="label label-info">{{model.findersTotal}}</span> |
|
</div> |
|
</div> |
|
<div class="container"> |
|
{{#if model.finders}} |
|
<h4>Block finders</h4> |
|
<table class="table table-condensed table-striped"> |
|
<thead> |
|
<tr> |
|
<th>Miner</th> |
|
<th>Blocks</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
{{#each model.finders as |f|}} |
|
<tr> |
|
<td>{{wallet f.address}}</td> |
|
<td>{{format-number f.blocks}}</td> |
|
</tr> |
|
{{/each}} |
|
</tbody> |
|
</table> |
|
{{else}} |
|
<h3>No blocks yet</h3> |
|
{{/if}} |
|
</div> |