mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-18 23:16:49 +00:00
25 lines
751 B
HTML
25 lines
751 B
HTML
<link rel="stylesheet" href="/components/sell-orders/sell-orders.css" />
|
|
<div class="col-md-12 buy-order-table">
|
|
<table class="table table-striped table-fixed-heading">
|
|
<thead>
|
|
<tr>
|
|
<th >Price</th>
|
|
<th >{{currencyOne}}</th>
|
|
<th >{{currencyTwo}}</th>
|
|
<th >Sum({{currencyTwo}})</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
<div class="buy-order-data">
|
|
<table class="table table-striped">
|
|
<tbody>
|
|
<tr ng-repeat="sellOrder in sellOrders">
|
|
<td >{{sellOrder.price}}</td>
|
|
<td >{{sellOrder.currencyOneAmount}}</td>
|
|
<td >{{sellOrder.currencyTwoAmount}}</td>
|
|
<td >{{sellOrder.sum}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<div>
|
|
</div> |