35 lines
870 B
PHP
35 lines
870 B
PHP
<div class="col">
|
|
<div class="table-responsive">
|
|
<h6>Buy list</h6>
|
|
<table class="table-borderless table-sm">
|
|
<thead>
|
|
<tr>
|
|
<th>Buyer</th>
|
|
<th>BC1</th>
|
|
<th>Quantity</th>
|
|
<th>BC2</th>
|
|
<th>Price</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="bd-buy"></tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col">
|
|
<div class="table-responsive">
|
|
<h6>Sell list</h6>
|
|
<table class="table-borderless table-sm">
|
|
<thead>
|
|
<tr>
|
|
<th>Buyer</th>
|
|
<th>BC1</th>
|
|
<th>Quantity</th>
|
|
<th>BC2</th>
|
|
<th>Price</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="bd-sell"></tbody>
|
|
</table>
|
|
</div>
|
|
</div> |