mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 23:16:45 +00:00
17 lines
497 B
HTML
17 lines
497 B
HTML
<h2>Wallets</h2>
|
|
<h3>All your currency, all in one place</h3>
|
|
<div ng-repeat="wallet in wallets">
|
|
<h4>{{wallet.ExchangeName}}</h4>
|
|
<table class="table table-striped">
|
|
<tr>
|
|
<th>Currency Name</th>
|
|
<th>Total</th>
|
|
<th>Hold</th>
|
|
</tr>
|
|
<tr ng-repeat="value in wallet.Currencies">
|
|
<td>{{value.CurrencyName}}</td>
|
|
<td>{{value.TotalValue}}</td>
|
|
<td>{{value.Hold}}</td>
|
|
</tr>
|
|
</table>
|
|
</div> |