8 changed files with 131 additions and 80 deletions
@ -1,25 +1,25 @@ |
|||||||
{{#if model.immature}} |
{{#if model.immature}} |
||||||
<h4>Immature Blocks</h4> |
<h4>Immature Blocks</h4> |
||||||
<div class="table-responsive"> |
<div class="table-responsive"> |
||||||
<table class="table table-condensed table-striped"> |
<table class="table table-condensed table-striped"> |
||||||
<thead> |
<thead> |
||||||
<tr> |
<tr> |
||||||
<th>Height</th> |
<th>Height</th> |
||||||
<th>Login</th> |
<th>Login</th> |
||||||
<th>Time Found</th> |
<th>Time Found</th> |
||||||
<th>Variance</th> |
<th>Variance</th> |
||||||
<th>Reward</th> |
<th>Reward</th> |
||||||
<th>Type</th> |
<th>Type</th> |
||||||
<th>Shares/Diff</th> |
<th>Shares/Diff</th> |
||||||
<th>Worker ID</th> |
<th>Worker ID</th> |
||||||
</tr> |
</tr> |
||||||
</thead> |
</thead> |
||||||
<tbody> |
<tbody> |
||||||
{{#each model.immature as |block|}} |
{{#each model.immature as |block|}} |
||||||
{{partial "blocks/block"}} |
{{partial "blocks/block"}} |
||||||
{{/each}} |
{{/each}} |
||||||
</tbody> |
</tbody> |
||||||
</table> |
</table> |
||||||
</div> |
</div> |
||||||
{{else}} |
{{else}} |
||||||
<h3>No immature blocks yet</h3> |
<h3>No immature blocks yet</h3> |
||||||
|
|||||||
@ -1,25 +1,25 @@ |
|||||||
{{#if model.matured}} |
{{#if model.matured}} |
||||||
<h4>Matured Blocks</h4> |
<h4>Matured Blocks</h4> |
||||||
<div class="table-responsive"> |
<div class="table-responsive"> |
||||||
<table class="table table-condensed table-striped"> |
<table class="table table-condensed table-striped"> |
||||||
<thead> |
<thead> |
||||||
<tr> |
<tr> |
||||||
<th>Height</th> |
<th>Height</th> |
||||||
<th>Login</th> |
<th>Login</th> |
||||||
<th>Time Found</th> |
<th>Time Found</th> |
||||||
<th>Pool Luck</th> |
<th>Pool Luck</th> |
||||||
<th>Reward</th> |
<th>Reward</th> |
||||||
<th>Type</th> |
<th>Type</th> |
||||||
<th>Shares/Diff</th> |
<th>Shares/Diff</th> |
||||||
<th>Worker ID</th> |
<th>Worker ID</th> |
||||||
</tr> |
</tr> |
||||||
</thead> |
</thead> |
||||||
<tbody> |
<tbody> |
||||||
{{#each model.matured as |block|}} |
{{#each model.matured as |block|}} |
||||||
{{partial "blocks/block"}} |
{{partial "blocks/block"}} |
||||||
{{/each}} |
{{/each}} |
||||||
</tbody> |
</tbody> |
||||||
</table> |
</table> |
||||||
</div> |
</div> |
||||||
{{else}} |
{{else}} |
||||||
<h3>No matured blocks yet</h3> |
<h3>No matured blocks yet</h3> |
||||||
|
|||||||
Loading…
Reference in new issue