%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
<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 active">Covid-19 Vaccination</li> </ol> <!-- DataTables Example --> <div class="card mb-3 fomr-news" > <div class="card-header card-header-new"> <h3><i class="fa fa-calendar-alt"></i> Covid-19 Vaccination </h3> <a href="<?=base_url('admin/managecovidtest/addprofile')?>"><input type="button" name="button" id="button" value="Add New Profile"></a> </div> <div class="row"> <form method="GET" name="Manage_Interaction" id="Manage_Interaction"> <div class="col-xl-12"> <div class="form-group m-form__group col-xl-3"> <label class="col-xl-3 col-lg-3 col-form-label">Select From Date<span class="text-danger">*</span> :</label> <div class=""> <input placeholder="Select date" type="text" id="from_date" value="<?=$_GET["from_date"]?>" name="from_date" autocomplete=OFF class="form-control"> <script type="text/javascript"> $(function () { $('#from_date').datepicker({ format: 'DD-MM-YYYY', maxDate: new Date, defaultDate: '<?=$_GET["from_date"]?>' }); }); </script> </div> </div> <div class="form-group m-form__group col-xl-3"> <label class="col-xl-3 col-lg-3 col-form-label">Select To Date<span class="text-danger">*</span> :</label> <div class=""> <input placeholder="Select date" type="text" id="to_date" value="<?=$_GET["to_date"]?>" name="to_date" autocomplete=OFF class="form-control"> <script type="text/javascript"> $(function () { $('#to_date').datepicker({ format: 'DD-MM-YYYY', maxDate: new Date, defaultDate: '<?=$_GET["to_date"]?>' }); }); </script> </div> </div> <div class="form-group m-form__group col-xl-3"> <label class="col-xl-3 col-lg-3 col-form-label">Status<span class="text-danger">*</span> :</label> <div class=""> <select name="status" class="form-control"> <option value="">Select Status</option> <option value="1" <?php if($_GET['status']==1) { echo 'selected'; }?>> Request Submitted</option> <option value="2" <?php if($_GET['status']==2) { echo 'selected'; }?>>Verification Inprogress</option> <option value="3" <?php if($_GET['status']==3) { echo 'selected'; }?>>Verified</option> </select> </div> </div> <div class="form-group m-form__group col-xl-3"> <input type="submit" name="submit" id="submit" value="SUBMIT" class="button2"> </div> </div> </form> </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>Full Name</th> <th>Aadhar No</th> <th>Contact No.</th> <th>Id Proof</th> <th>Company Name</th> <th>Date/Time</th> <th>Status</th> <th>Action</th> </tr> </thead> <tbody> <?php if(count($recorddetails)) : $cnt=1; foreach ($recorddetails as $row) : ?> <tr> <td><?php echo htmlentities($cnt);?></td> <td><?php echo htmlentities($row['full_name']);?><br/><strong><?php echo $row['account_type']=='2' ? 'Corporate' : 'Individual';?> Account</strong></td> <td><?php echo htmlentities($row['aadhar_number']);?><br/><?php echo htmlentities($row['id_proof']);?></td> <td><?php echo htmlentities($row['contact_number']);?> <br/><?php echo htmlentities($row['email_id']);?><br/><?php echo htmlentities($row['conf_order_id']);?></td> <td><a href="<?=base_url('attachments/documents/'.$row['photo_proof'])?>"><?php echo htmlentities($row['photo_proof']);?></a></td> <td><?php echo htmlentities($row['company_name']);?></td> <td><?php echo htmlentities($row['createdon']);?></td> <td><?=STATUS[$row['status']]?></td> <td><?php $id =$row['id']; echo anchor("admin/managecovidtest/addprofile/{$id}",' ','class="fa fa-edit"')?><?php $id =$row['id']; echo anchor("admin/managecovidtest/viewprofile/{$id}",' ','class="fa fa-eye"'); if($row['status']<>'4') { echo anchor("admin/managecovidtest/deleteprofile/{$id}",' ','class="fa fa-trash confirm-delete"'); } ?></td> </tr> <?php $cnt++; endforeach; else : ?> <tr> <td>No Record found</td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr> <?php endif; ?> </tbody> </table> </div> </div> </div> </div>