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