flo-exchange/views/traders_trans_list.php

34 lines
1.1 KiB
PHP

<?php
if (isset($tradersList) && is_array($tradersList) && !empty($tradersList)) { ?>
<div class="container-fluid p--2 background-white-1 mt--4">
<div class="container">
<div class="col-lg-6">
<?php include_once 'traders_list.php'; ?>
</div>
<div class="col-lg-6">
<h4>Recent Transactions</h4>
<h5><a href="Recent_Transactions" target="_blank">View All</a></h5>
<div class="table-responsive">
<table class="table table-borderless table-striped">
<thead>
<tr>
<th>Seller</th>
<th>Buyer</th>
<th>Price ($)</th>
<th>Qty</th>
<th>Total ($)</th>
<th>Date</th>
</tr>
</thead>
<tbody id="trade-list"></tbody>
</table>
</div>
</div>
</div>
</div>
<?php }