EVOLUTION-NINJA
Edit File: po_acknowledgemets.php
<div class="content-wrapper"> <div class="middle_work_hedding"> <div class="container-fluid"> <h3><em>PO Acknowledgemets</em></h3> </div> </div> <!---- middle_work_hedding END -----------------------------------------------------------------------------> <div class="middle_work_table"> <div class="container-fluid"> <div class="table-responsive"> <table class="table table-striped " style="border-radius: 10px !important;" > <thead> <tr> <th style="border-top-left-radius: 10px !important;">Date</th> <th>PO Number</th> <th style="border-top-right-radius: 10px !important;">Acknowledgement</th> </tr> </thead> <tbody> <?php if($acknowledgemets!=""){ foreach($acknowledgemets as $ack){?> <tr> <td><?php echo $ack->createdate;?></td> <td><?php echo $ack->po_number;?> </td> <td> <a href="<?php echo base_url($ack->acknowledgement);?>" target="new_blank" class="downloads">Download   <i class="fa fa-download" aria-hidden="true"></i></a> </td> </tr> <?php } }?> </tbody> </table> </div> <!--- table ------> </div> </div> </div>