Files
kredits-web/app/components/budget-balances/template.hbs
T

18 lines
476 B
Handlebars

<table class="token-balances {{if this.loading 'loading'}}">
<thead>
<tr>
<th>Token</th>
<th>Amount</th>
<th>Fiat value</th>
</tr>
</thead>
<tbody>
{{#each this.balances as |balance|}}
<tr>
<th>{{balance.token.symbol}}</th>
<td class="amount">{{fmt-crypto-currency balance.balance balance.token.symbol}}</td>
<td class="fiat-amount">{{balance.balanceUsd}} USD</td>
</tr>
{{/each}}
</tbody>
</table>