23 lines
829 B
PHP
23 lines
829 B
PHP
<div class="container">
|
|
<div class="col-lg-12">
|
|
<h2 class="mt--2">My Transactions</h2>
|
|
|
|
<div class="table-responsive mt--2">
|
|
<table class="table table-striped table-bordered" id="messages-datatable" cellspacing="0" width="100%" cellpadding="10">
|
|
<thead>
|
|
<tr>
|
|
<th>Seller</th>
|
|
<th>Buyer</th>
|
|
<th>Trade Price</th>
|
|
<th>Quantity Traded</th>
|
|
<th>Transaction Amount</th>
|
|
<th>Trade Date</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="myTransactionsTable"></tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|