29 lines
913 B
PHP
29 lines
913 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Abhishek Kumar Sinha
|
|
* Date: 10/5/2017
|
|
* Time: 11:19 AM
|
|
*/
|
|
?>
|
|
<div class="container">
|
|
<div class="col-lg-12">
|
|
<h2 class="mt--2">Recent 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>
|