Files
gocryptotrader/web/app/components/buy-orders/buy-orders.html
GloriousCode 5520b0115e Early buy-orders work
Will implement ui-grid for tables. Way better at handling data
2017-02-28 17:13:34 +11:00

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>