Current File : /home/giriqfky/public_html/Barga/application/modules/dashboard/views//ajax_index.php
<table id="example2" class="table table-bordered table-hover">
<thead style="background-color:#f5f5f5">
<tr>
<th width="15">#</th>
<th width="110">Programme Name</th>
<th width="100">Member Name</th>
<th width="100">Member Email</th>
<th width="80">Status</th>
<th width="110">Registered Date</th>
<th width="70">Action</th>
</tr>
</thead>
<tbody>
<?php if(count($members) > 0){?>
<?php foreach($members as $m){?>
<tr>
<td><?php echo ++$sl_no;?></td>
<td><?php echo $m->member_type_name;?><?php if($m->year_of_graduation != '0000'){?> - <?php echo $m->year_of_graduation;?> <?php }?></td>
<td><?php echo displayText($m->member_name, "C");?></td>
<td><?php echo $m->member_email;?></td>
<td><?php if($m->member_status == 0) echo "Pending"; else echo memberStatus($m->member_status);?></td>
<td><?php echo showDate($m->doc);?></td>
<td>
<a class="btn btn-info tooltips btn-sm" href="<?php echo site_url('members/memberForm/'.$m->member_id);?>" title="View Member Profile"><i class="fa fa-edit"></i></a>
</td>
</tr>
<?php }?>
<?php }else{?>
<tr><td colspan="7"><?php echo getMessage("record_not_found", 3);?></td></tr>
<?php }?>
</tbody>
</table>
<div class="clearfix"></div>
<div class="pagination pull-right"><?php echo $this->ajax_pagination->create_links(); ?></div>