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.
30 lines
925 B
30 lines
925 B
<div class="container"> |
|
{{high-charts mode=chartMode chartOptions=chartPayment content=chartData}} |
|
{{#if model.payments}} |
|
<h3>{{t "payout.latest_payouts"}}</h3> |
|
<div class="table-responsive"> |
|
<table class="table table-condensed table-striped"> |
|
<thead> |
|
<tr> |
|
<th>{{t "payout.time"}}</th> |
|
<th>{{t "payout.txid"}}</th> |
|
<th>{{t "payout.amount"}} {{config.Unit}}</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
{{#each model.payments as |tx|}} |
|
<tr> |
|
<td>{{format-date-locale tx.timestamp}}</td> |
|
<td> |
|
<a href="{{t "links.blockExplorerLink_tx"}}{{tx.tx}}" class="hash" rel="nofollow" target="_blank">{{tx.tx}}</a> |
|
</td> |
|
<td>{{format-balance tx.amount}}</td> |
|
</tr> |
|
{{/each}} |
|
</tbody> |
|
</table> |
|
</div> |
|
{{else}} |
|
<h3>{{t "payout.no_payouts_yet"}}</h3> |
|
{{/if}} |
|
</div>
|
|
|