mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-06-06 23:16:53 +00:00
20 lines
541 B
HTML
20 lines
541 B
HTML
<div class="col-md-12">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Price</th>
|
|
<th>{{currencyOne}}</th>
|
|
<th>{{currencyTwo}}</th>
|
|
<th>Sum({{currencyTwo}})</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr ng-repeat="buyOrder in buyOrders">
|
|
<td>{{buyOrder.price}}</td>
|
|
<td>{{buyOrder.currencyOneAmount}}</td>
|
|
<td>{{buyOrder.currencyTwoAmount}}</td>
|
|
<td>{{buyOrder.sum}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<div> |