%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<?php include APPPATH.'views/admin/includes/header.php';?> <div id="content-wrapper"> <div class="container-fluid"> <!-- Breadcrumbs--> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="<?php echo site_url('admin/Dashboard'); ?>">Dashboard</a> </li> <li class="breadcrumb-item"> <a href="<?php echo site_url('admin/managementor'); ?>">Mentor List</a> </li> <li class="breadcrumb-item active">View Mentee</li> </ol> <!-- DataTables Example --> <div class="card mb-3 fomr-news1"> <div class="card-header card-header-new"> <h3><i class="fa fa-users"></i> View Mentee </h3> <?php if(count($recordsArray)>0) { ?><a id="button" href="<?=base_url('admin/managementor/removementee?id=0&mid='.$recorddetail['id'])?>" class="btn button5 confirm-delete">Remove All</a> <?php } ?></div> <div class="row"> <div class="col-xl-12"> <div class="form-group m-form__group col-xl-5" > <label class="col-form-label"><strong>Mentor Name</strong> : <?=$recorddetail['first_name'].' '.$recorddetail['last_name']?></label> <div class="select"> </div> </div> <div class="form-group m-form__group col-xl-6"> <label class=" col-form-label"><strong>Department</strong> : <?=$departmentdetail[$recorddetail['department_id']]['department_name']?></label> </div> </div> </div> </div> <div class="card-body"> <div class="table-responsive"> <!---- Success Message ----> <?php if ($this->session->flashdata('success')) { ?> <p style="color:green; font-size:18px;"><?php echo $this->session->flashdata('success'); ?></p> </div> <?php } ?> <table class="table table-bordered" id="dataTable" width="100%" cellspacing="0"> <thead> <tr> <th>SR No</th> <th>Name</th> <th>Email Id</th> <th>System ID</th> <th>School Name</th> <th>Department Name</th> <th>Action</th> </tr> </thead> <tbody> <?php if(count($recordsArray)) : $cnt=1; foreach ($recordsArray as $row) : ?> <tr> <td><?php echo htmlentities($cnt);?></td> <td><?php echo htmlentities($row['full_name']);?></td> <td><?php echo htmlentities($row['email_id']);?> </td> <td><?php echo htmlentities($row['system_id']);?></td> <td><?php echo htmlentities($schoolArray[$row['school_id']]['school_name']);?></td> <td><?php echo htmlentities($menteedepartmentdetail[$row['department_id']]['department_name']);?></td> <td> <a href="<?=base_url('admin/managementor/removementee?id='.$row['id'].'&mid='.$recorddetail['id'])?>" class="fa fa-trash confirm-delete"> </a> </td> </tr> <?php $cnt++; endforeach; else : ?> <tr> <td>No Record Found</td> <td> </td> <td > </td> <td > </td> <td > </td> <td> </td> <td> </td> </tr> <?php endif; ?> </tbody> </table> </div> </div> </div> <!-- /.container-fluid --> <!-- Sticky Footer --> <?php include APPPATH.'views/admin/includes/footer.php';?>