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
817 B
30 lines
817 B
<div class="container"> |
|
{{high-charts mode=chartMode chartOptions=chartPayment content=chartData}} |
|
{{#if model.payments}} |
|
<h4>Your Latest Payouts</h4> |
|
<div class="table-responsive"> |
|
<table class="table table-condensed table-striped"> |
|
<thead> |
|
<tr> |
|
<th>Time</th> |
|
<th>Tx ID</th> |
|
<th>Amount</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
{{#each model.payments as |tx|}} |
|
<tr> |
|
<td>{{format-date-locale tx.timestamp}}</td> |
|
<td> |
|
<a href="https://eticascan.org/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>No payouts yet</h3> |
|
{{/if}} |
|
</div>
|
|
|