%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="feedback"> <?php if ($this->session->flashdata('result_delete')) { ?> <hr> <div class="alert alert-success"><?= $this->session->flashdata('result_delete') ?></div> <hr> <?php } if ($this->session->flashdata('result_publish')) { ?> <hr> <div class="alert alert-success"><?= $this->session->flashdata('result_publish') ?></div> <hr> <?php } $langs = $languages->result(); ?> <!-- <h1><img src="<//?= base_url('assets/imgs/email.png') ?>" class="header-img" style="margin-top:-2px;">Feedback</h1>--> <h1><i class="fa fa-list-alt titleIconsize"></i> Feedback</h1> <hr> <div class="row"> <div class="col-xs-12"> <div class="well hidden-xs"> <div class="row"> <form method="GET" id="searchProductsForm" action=""> <div class="col-sm-3"> <label>Name:</label> <div class="input-group"> <input class="form-control" placeholder="User Name" type="text" value="<?= isset($_GET['search_title']) ? $_GET['search_title'] : '' ?>" name="search_title"> <span class="input-group-btn"> <button class="btn btn-default" type="submit" value=""> <i class="fa fa-search"></i> </button> </span> </div> </div> <div class="col-sm-2"> <label>Order:</label> <select name="order_by" class="form-control selectpicker change-products-form"> <option <?= isset($_GET['order_by']) && $_GET['order_by'] == 'id=desc' ? 'selected=""' : '' ?> value="id=desc">Newest</option> <option <?= isset($_GET['order_by']) && $_GET['order_by'] == 'id=asc' ? 'selected=""' : '' ?> value="id=asc">Oldest</option> <!--<option <?= isset($_GET['order_by']) && $_GET['order_by'] == 'quantity=asc' ? 'selected=""' : '' ?> value="quantity=asc">Low Quantity</option> <option <?= isset($_GET['order_by']) && $_GET['order_by'] == 'quantity=desc' ? 'selected=""' : '' ?> value="quantity=desc">High Quantity</option>--> </select> </div> <div class="col-sm-2"> <label>Category:</label> <select name="category" class="form-control selectpicker change-products-form"> <option value="">None</option> <option <?= isset($_GET['category']) && $_GET['category'] == 'Feedback' ? 'selected=""' : '' ?> value="Feedback">Feedback</option> <option <?= isset($_GET['category']) && $_GET['category'] == 'Complaint' ? 'selected=""' : '' ?> value="Complaint">Complaint</option> <option <?= isset($_GET['category']) && $_GET['category'] == 'Contact Us' ? 'selected=""' : '' ?> value="Contact Us">Contact Us</option> </select> </div> <div class="col-sm-2"> <label>From Date:</label> <div id="datepicker" class="input-group date" data-date-format="yyyy-mm-dd"> <input class="form-control" type="text" name="from_date" readonly /> <span class="input-group-addon"><i class="glyphicon glyphicon-calendar"></i></span> </div> </div> <div class="col-sm-2"> <label>To Date:</label> <div id="datepicker1" class="input-group date" data-date-format="yyyy-mm-dd"> <input class="form-control" type="text" name="to_date" readonly /> <span class="input-group-addon"><i class="glyphicon glyphicon-calendar"></i></span> </div> </div> <div class="col-sm-1"> <label></label> <div class="input-group"> <button class="btn btn-primary" type="submit" value=""> <i class="glyphicon glyphicon-search"></i> </button> </div> </div> </form> </div> </div> <hr> <?php if ($products) { ?> <div class="table-responsive"> <table class="table table-bordered"> <thead> <tr> <th>Name</th> <th>Email</th> <th>Mobile Number</th> <th>Type</th> <th>Message</th> <th>Query Date</th> <th class="text-right">Action</th> </tr> </thead> <tbody> <?php foreach ($products as $row) { ?> <tr> <td> <?= $row->name ?> </td> <td> <?= $row->email ?> </td> <td> <?= $row->contact ?> </td> <td> <?= $row->type ?> </td> <td><?= substr($row->message,0,60) ?>...</td> <td><?= $row->createdon ?></td> <td> <div class="pull-right"> <a href="javascript:void(0);" data-toggle="modal" data-target="#add_edit_articles<?=$row->id ?>" class="btn btn-primary btn-xs pull-right viewFeedBackbtn">View Details</a> <div class="clearfix"></div> </div> </td> </tr> <div class="modal fade" id="add_edit_articles<?=$row->id ?>" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <h4 class="modal-title" id="myModalLabel">Details</h4> </div> <div class="modal-body"> <p><b><span>Name</span></b>: <span><?= $row->name ?></span></p> <p><b><span>Email</span></b>: <span><?= $row->email ?></span></p> <p><b><span>Conatct Number</span></b>: <span><?= $row->contact ?></span></p> <p><b><span>Type</span></b>: <span> <?= $row->type ?></span></p> <p><b><span>Message</span></b>: <span><?= $row->message ?></span></p> </div> </div> </div> </div> <?php } ?> </tbody> </table> </div> <form method="POST"><input type="submit" name="export" value="Export" class="btn btn-default" style="float:right;"></form> <?= $links_pagination ?> </div> <?php } else { ?> <div class ="alert alert-info">No Feedbacks Yet!</div> <?php } ?> </div>