|
|
|
@ -2,21 +2,21 @@ |
|
|
|
<table class="table table-condensed table-striped"> |
|
|
|
<table class="table table-condensed table-striped"> |
|
|
|
<thead> |
|
|
|
<thead> |
|
|
|
<tr> |
|
|
|
<tr> |
|
|
|
<th>Blocks</th> |
|
|
|
<th>{{t "luck.blocks"}}</th> |
|
|
|
<th>Shares/Diff</th> |
|
|
|
<th>{{t "luck.shares_diff"}}</th> |
|
|
|
<th>Uncle Rate</th> |
|
|
|
<th>{{t "luck.uncle_rate"}}</th> |
|
|
|
<th>Orphan Rate</th> |
|
|
|
<th>{{t "luck.orphan_rate"}}</th> |
|
|
|
</tr> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
</thead> |
|
|
|
<tbody> |
|
|
|
<tbody> |
|
|
|
{{#each-in model.luck as |total row|}} |
|
|
|
{{#each-in model.luck as |total row|}} |
|
|
|
<tr> |
|
|
|
<tr> |
|
|
|
<td>{{total}}</td> |
|
|
|
<td>{{total}}</td> |
|
|
|
<td>{{format-number row.luck style='percent'}}</td> |
|
|
|
<td>{{format-number row.luck style='percent'}}</td> |
|
|
|
<td>{{format-number row.uncleRate style='percent'}}</td> |
|
|
|
<td>{{format-number row.uncleRate style='percent'}}</td> |
|
|
|
<td>{{format-number row.orphanRate style='percent'}}</td> |
|
|
|
<td>{{format-number row.orphanRate style='percent'}}</td> |
|
|
|
</tr> |
|
|
|
</tr> |
|
|
|
{{/each-in}} |
|
|
|
{{/each-in}} |
|
|
|
</tbody> |
|
|
|
</tbody> |
|
|
|
</table> |
|
|
|
</table> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|