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.
26 lines
699 B
26 lines
699 B
{{#if model.immature}} |
|
<h3>{{t "block.immature_blocks"}}</h3> |
|
<div class="table-responsive"> |
|
<table class="table table-condensed table-striped"> |
|
<thead> |
|
<tr> |
|
<th>{{t "block.height"}}</th> |
|
<th>{{t "block.login"}}</th> |
|
<th>{{t "block.hash"}}</th> |
|
<th>{{t "block.time_found"}}</th> |
|
<th>{{t "block.variance"}}</th> |
|
<th>{{t "block.reward"}}</th> |
|
<th>{{t "block.shares"}}</th> |
|
<th>{{t "block.worker"}}</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
{{#each model.immature as |block|}} |
|
{{partial "blocks/block"}} |
|
{{/each}} |
|
</tbody> |
|
</table> |
|
</div> |
|
{{else}} |
|
<h3>{{t "block.no_immature_blocks_yet"}}</h3> |
|
{{/if}}
|
|
|