?
Current Path : /home1/savoy/www/savoyglobal.net/chess2015open/application/views/admin/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/www/savoyglobal.net/chess2015open/application/views/admin/registration_details.php |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <?php $this->load->view('admin/header'); ?> <body> <script type="text/javascript"> $(document).ready(function() { $("#myTable").tablesorter(); } ); </script> <?php $this->load->view('admin/menu'); ?> <div class="container_12"> <!-- Example table --> <div class="module"> <h2><span>Registration Details </span></h2> <div class="module-table-body"> <form action=""> <table id="myTable" class="tablesorter"> <thead> <tr> <th style="width:4%">Sl No</th> <th style="width:12%">Student Name</th> <th style="width:8%">Gender</th> <th style="width:10%">School Name</th> <th style="width:8%">Date of Birth</th> <th style="width:10%">Age</th> <th style="width:10%">Status</th> <th style="width:10%">Age Proof</th> <th style="width:5%">Action</th> </tr> </thead> <tbody> <?php $i = $id; if ($registration->num_rows() > 0) { foreach ($registration->result_array() as $list) { ?> <tr> <td class="align-center"><?= $i++; ?></td> <td><?= $list['name'] ?></td> <td><?= $list['gender'] ?></td> <td><?= $list['school_name'] ?></td> <td><?= $this->mastermodel->convertdatenormalformat($list['date_of_birth']) ?></td> <?php $birth = new DateTime($list['date_of_birth']); $today = new DateTime('2014-02-21'); $diff = $today->diff($birth); if ($list['status'] == 'Pending') { if ($diff->y + $diff->m / 100 <= 10.00) ?> <td><?= $diff->y . '.' . $diff->m . ' Years'; ?></td> <?php } else { if ($diff->y + $diff->m / 100 > 10.00) ?> <td><?= $diff->y . '.' . $diff->m . ' Years'; ?></td> <?php } ?> <td> <?php if ($list['status'] == "Pending") { ?> <input type="checkbox" name="status" id="status" value="<?= $list['registration_id'] ?>" onclick="get_students(this,'<?= $i ?>')"/> <input type="hidden" name="age<?= $i ?>" id="age<?= $i ?>" value="<?= $diff->y; ?>"/> <?php } else { ?> <input type="checkbox" name="status" id="status" checked disabled="disabled" /> <?php } ?> </td> <td> <?php if ($list['proof'] != "") { ?> <a href="<?= base_url() . '/assets/uploads/proof/' . $list['proof'] ?>"><img src="<?= base_url(); ?>/assets/images/icon_pdficon_pdf.png" title="PDF" width="20" height="20"></img></a> <?php } else { ?> <?php } ?> </td> <td> <a href="<?= site_url(); ?>/admin/update_registration_details/<?= $list['registration_id']; ?>"><img src="<?= base_url(); ?>/assets/admin/images/pencil.gif" width="16" height="16" alt="edit" title="Edit" /></a> <?= anchor("admin/delete/registration/registration_id/" . $list['registration_id'] . "/registration_details", '<img src="' . base_url() . 'assets/admin/images/bin.gif" title="Delete" width="16" height="16" align = "center" >', array('onclick' => "return confirm('Are you sure want to delete this record?')")) ?> </td> </tr> <?php } } ?> </tbody> </table> </form> <div id="pager"> <ul id="pagination-digg"> <li <?php if ($pagenum > 1) { ?>class="previous" <?php } else { ?> class="previous-off" <?php } ?> > <?php if ($pagenum > 1) { ?><a href="<?= site_url(); ?>/admin/registration_details/<?= $pagenum - 1 ?>" > <?php } ?> «Previous</a></li> <?php //Pagination Numbers for ($i = $startpage; $i <= $endpage; $i++) { if ($pagenum == $i) { ?> <li class="active" ><?= $i ?></li> <?php } else { ?> <li ><a href="<?= site_url(); ?>/admin/registration_details/<?= $i ?>"><?= $i ?></a></li> <?php } } ?> <li <?php if ($pagenum < $endpage) { ?> class="next-on" <?php } else { ?> class="next-off" <?php } ?>> <?php if ($pagenum < $endpage) { ?><a href="<?= site_url(); ?>/admin/registration_details/<?= $pagenum + 1 ?>" > <?php } ?> Next » </a></li> </ul> </div> <div style="clear: both"></div> </div> <!-- End .module-table-body --> </div> <!-- End .module --> <div style="clear:both;"></div> </div> <!-- End .container_12 --> <?php $this->load->view('admin/footer'); ?> </body> </html> <script> function get_students(obj,rowid) { var $combo = $(obj); var status=$combo.is(':checked') ? "Approved" : "Pending"; var registration_id = $combo.val(); var age=document.getElementById('age'+rowid).value; if(confirm('Are you sure want to approve this participant? This operation cannot be undone.')) { $.ajax({ type: "POST", data : { registration_id : registration_id }, url: "<?= site_url() ?>/admin/set_student_status/"+registration_id+"/"+ status+"/"+age, success: function(data) { alert("Candidate approved successfully!"); $combo.attr('disabled', true); } }); } else { $combo.attr('checked', false); } } </script>