migration of open-etc-friends-pool for use with Etica/EGAZ
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.
 
 
 
 
 
 

33 lines
936 B

<div class="jumbotron-brand">
<div class="container">
<p class="lead">Total hashrate: {{format-hashrate model.hashrate}}.</p>
<strong>Total miners:</strong> <span class="label label-info">{{model.minersTotal}}</span>
</div>
</div>
<div class="container">
{{#if model.miners}}
<h4>Miners</h4>
<div class="table-responsive">
<table class="table table-condensed table-striped">
<thead>
<tr>
<th>Login</th>
<th>Hashrate</th>
<th>Last Beat</th>
</tr>
</thead>
<tbody>
{{#each model.miners as |m|}}
<tr class="{{if m.offline "warning"}}">
<td>{{#link-to 'account' m.login class='hash'}}{{m.login}}{{/link-to}}</td>
<td>{{format-hashrate m.hr}}</td>
<td>{{format-date-locale m.lastBeat}}</td>
</tr>
{{/each}}
</tbody>
</table>
</div>
{{else}}
<h3>No miners</h3>
{{/if}}
</div>