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.
41 lines
1.1 KiB
41 lines
1.1 KiB
<div class="jumbotron-brand"> |
|
<div class="container"> |
|
<p class="lead">TX fees supplied by the pool wallet.</p> |
|
<strong>Total payments sent:</strong> <span class="label label-info">{{model.paymentsTotal}}</span> |
|
</div> |
|
</div> |
|
<div class="container"> |
|
{{#if model.payments}} |
|
<h4>Latest Payouts</h4> |
|
<div class="table-responsive"> |
|
<table class="table table-condensed table-striped"> |
|
<thead> |
|
<tr> |
|
<th>Time</th> |
|
<th>Amount</th> |
|
<th>Address</th> |
|
<th>Tx ID</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
{{#each model.payments as |tx|}} |
|
<tr> |
|
<td>{{format-date-locale tx.timestamp}}</td> |
|
<td>{{format-number tx.formatAmount}}</td> |
|
<td> |
|
<a href="https://eticascan.org/address/{{tx.address}}" class="hash" rel="nofollow" target="_blank">{{wallet |
|
tx.address}}</a> |
|
</td> |
|
<td> |
|
y |
|
tx.tx}}</a> |
|
</td> |
|
</tr> |
|
{{/each}} |
|
</tbody> |
|
</table> |
|
</div> |
|
{{else}} |
|
<h3>No payouts yet</h3> |
|
{{/if}} |
|
</div>
|
|
|