Browse Source

Update luck.hbs

master
yuriy0803 2 years ago committed by GitHub
parent
commit
41db36ad6e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 24
      www/app/templates/luck.hbs

24
www/app/templates/luck.hbs

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

Loading…
Cancel
Save