Quick basic wallet interface implementation

This commit is contained in:
GloriousCode
2016-09-13 17:38:37 +10:00
parent fcab6df787
commit 01a599f571
6 changed files with 27 additions and 38 deletions

View File

@@ -1,28 +1,17 @@
<h2>Dashboard</h2>
<h3>Your current standings</h3>
<div ng-repeat="exchange in exchanges">
<h4>{{exchange.exchangeName}}</h4>
<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</th>
<th>Last</th>
<th>High</th>
<th>Low</th>
<th>Volume</th>
<th>Bid</th>
<th>Ask</th>
<th>Currency Name</th>
<th>Total</th>
<th>Hold</th>
</tr>
<tr ng-repeat="value in exchange.exchangeValues">
<td>{{value.CryptoCurrency}}</td>
<td>{{value.Last}}</td>
<td>{{value.High}}</td>
<td>{{value.Low}}</td>
<td>{{value.Volume}}</td>
<td>{{value.Bid}}</td>
<td>{{value.Ask}}</td>
<tr ng-repeat="value in wallet.Currencies">
<td>{{value.CurrencyName}}</td>
<td>{{value.TotalValue}}</td>
<td>{{value.Hold}}</td>
</tr>
</table>
<div ng-repeat="value in exchange.exchangeValues">
</div>
</div>