Server : Apache/2.4.18 (Ubuntu) System : Linux canvaswebdesign 3.13.0-71-generic #114-Ubuntu SMP Tue Dec 1 02:34:22 UTC 2015 x86_64 User : oppastar ( 1041) PHP Version : 7.0.33-0ubuntu0.16.04.15 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, Directory : /var/www/laciasmara.com/public_html/shop/application/views/admin/review_reminders/ |
Upload File : |
<div class="row"> <div class="col-sm-12"> <p><a href="<?= base_url('admin/promotion'); ?>"><i class="fa fa-arrow-left" aria-hidden="true"></i> Kembali ke Promosi</a></p><br> <h2>Review Reminders</h2> <?= $this->session->flashdata('success'); ?> <?= $this->session->flashdata('result'); ?> </div> </div> <div class="row"> <div class="col-sm-12"> <br> <p><?= anchor('admin/review_reminders/add', '<i class="fa fa-plus" aria-hidden="true"></i> Kirim Review Reminders'); ?></p> </div> </div> <div class="row"> <div class="col-sm-12"> <ul class="nav nav-tabs" id="myTabs" role="tablist"> <li class="nav-item"> <a class="nav-link active" id="tab1" data-toggle="tab" href="#orders1" role="tab" aria-controls="orders1" aria-selected="true">Belum Terkirim</a> </li> <li class="nav-item"> <a class="nav-link" id="tab2" data-toggle="tab" href="#orders3" role="tab" aria-controls="orders3" aria-selected="false">Gagal Terkirim</a> </li> <li class="nav-item"> <a class="nav-link" id="tab3" data-toggle="tab" href="#orders2" role="tab" aria-controls="orders2" aria-selected="false">Sudah Terkirim</a> </li> </ul> <div class="tab-content" id="myTabContent"> <div class="tab-pane active" id="orders1" role="tabpanel" aria-labelledby="tab1"> <?php if (count($orders1)) : ?> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>Orders ID</th> <th>Tanggal Order</th> <th>Pelanggan</th> <th>Email</th> <th>Status</th> </tr> </thead> <tbody> <?php foreach ($orders1 as $item) : ?> <tr> <td><?= $item->id_orders; ?></td> <td><?= $item->order_date; ?></td> <td><?= $item->recipient_name; ?></td> <td><?= $item->email; ?></td> <td>Belum Terkirim</td> </tr> <?php endforeach; ?> </tbody> </table> </div> <div class="pagination-wrapper"> <?php echo $this->pagination->create_links('tab1_pagination'); ?> </div> <?php else : ?> <p>Tidak ada email yang belum terkirim</p> <?php endif; ?> </div> <div class="tab-pane fade" id="orders3" role="tabpanel" aria-labelledby="tab2"> <?php if (count($orders3)) : ?> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>Orders ID</th> <th>Tanggal Order</th> <th>Pelanggan</th> <th>Email</th> <th>Status</th> </tr> </thead> <tbody> <?php foreach ($orders3 as $item) : ?> <tr> <td><?= $item->id_orders; ?></td> <td><?= $item->order_date; ?></td> <td><?= $item->recipient_name; ?></td> <td><?= $item->email; ?></td> <td>Gagal Terkirim</td> </tr> <?php endforeach; ?> </tbody> </table> </div> <div class="pagination-wrapper"> <?php echo $this->pagination->create_links('tab3_pagination'); ?> </div> <?php else : ?> <p>Tidak ada email yang gagal terkirim</p> <?php endif; ?> </div> <div class="tab-pane fade" id="orders2" role="tabpanel" aria-labelledby="tab3"> <?php if (count($orders2)) : ?> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>Orders ID</th> <th>Tanggal Order</th> <th>Pelanggan</th> <th>Email</th> <th>Status</th> </tr> </thead> <tbody> <?php foreach ($orders2 as $item) : ?> <tr> <td><?= $item->id_orders; ?></td> <td><?= $item->order_date; ?></td> <td><?= $item->recipient_name; ?></td> <td><?= $item->email; ?></td> <td>Sudah Terkirim</td> </tr> <?php endforeach; ?> </tbody> </table> </div> <div class="pagination-wrapper"> <?php echo $this->pagination->create_links('tab2_pagination'); ?> </div> <?php else : ?> <p>Tidak ada email yang sudah terkirim</p> <?php endif; ?> </div> </div> </div> </div>