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.
27 lines
555 B
27 lines
555 B
{{#if model.matured}} |
|
<h4>Matured 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>Current Type</th> |
|
<th>Variance</th> |
|
<th>Reward</th> |
|
<th>Type</th> |
|
<th>Shares/Diff</th> |
|
<th>Worker ID</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
{{#each model.matured as |block|}} |
|
{{partial "blocks/block"}} |
|
{{/each}} |
|
</tbody> |
|
</table> |
|
</div> |
|
{{else}} |
|
<h3>No matured blocks yet</h3> |
|
{{/if}}
|
|
|