ok
Direktori : /proc/thread-self/root/home2/selectio/www/bharath/application/views/admin/location/ |
Current File : //proc/thread-self/root/home2/selectio/www/bharath/application/views/admin/location/countries.php |
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?> <div class="box"> <div class="box-header with-border"> <div class="left"> <h3 class="box-title"><?php echo trans("countries"); ?></h3> </div> <div class="right"> <a href="<?php echo admin_url(); ?>add-country" class="btn btn-success btn-add-new"> <i class="fa fa-plus"></i> <?php echo trans('add_country'); ?> </a> </div> </div> <div class="box-body"> <div class="row"> <!-- include message block --> <div class="col-sm-12"> <?php $this->load->view('admin/includes/_messages'); ?> </div> </div> <div class="row"> <div class="col-sm-12"> <div class="table-responsive"> <table class="table table-bordered table-striped" role="grid"> <div class="row table-filter-container"> <div class="col-sm-12"> <?php echo form_open(admin_url() . "countries", ['method' => 'GET']); ?> <div class="item-table-filter" style="width: 80px; min-width: 80px;"> <label><?php echo trans("show"); ?></label> <select name="show" class="form-control"> <option value="15" <?php echo ($this->input->get('show', true) == '15') ? 'selected' : ''; ?>>15</option> <option value="30" <?php echo ($this->input->get('show', true) == '30') ? 'selected' : ''; ?>>30</option> <option value="60" <?php echo ($this->input->get('show', true) == '60') ? 'selected' : ''; ?>>60</option> <option value="100" <?php echo ($this->input->get('show', true) == '100') ? 'selected' : ''; ?>>100</option> </select> </div> <div class="item-table-filter"> <label><?php echo trans("search"); ?></label> <input name="q" class="form-control" placeholder="<?php echo trans("search"); ?>" type="search" value="<?php echo html_escape($this->input->get('q', true)); ?>" <?php echo ($this->rtl == true) ? 'dir="rtl"' : ''; ?>> </div> <div class="item-table-filter md-top-10" style="width: 65px; min-width: 65px;"> <label style="display: block"> </label> <button type="submit" class="btn bg-purple"><?php echo trans("filter"); ?></button> </div> <?php echo form_close(); ?> </div> </div> <thead> <tr role="row"> <th width="20"><?php echo trans('id'); ?></th> <th><?php echo trans('name'); ?></th> <th><?php echo trans('status'); ?></th> <th class="max-width-120"><?php echo trans('options'); ?></th> </tr> </thead> <tbody> <?php foreach ($countries as $item): ?> <tr> <td><?php echo html_escape($item->id); ?></td> <td><?php echo html_escape($item->name); ?></td> <td> <?php if ($item->status == 1): ?> <label class="label label-success"><?php echo trans("active"); ?></label> <?php else: ?> <label class="label label-danger"><?php echo trans("inactive"); ?></label> <?php endif; ?> </td> <td width="20%"> <div class="dropdown"> <button class="btn bg-purple dropdown-toggle btn-select-option" type="button" data-toggle="dropdown"><?php echo trans('select_option'); ?> <span class="caret"></span> </button> <ul class="dropdown-menu options-dropdown"> <li> <a href="<?php echo admin_url(); ?>update-country/<?php echo html_escape($item->id); ?>"><i class="fa fa-edit option-icon"></i><?php echo trans('edit'); ?></a> </li> <li> <a href="javascript:void(0)" onclick="delete_item('admin_controller/delete_country_post','<?php echo $item->id; ?>','<?php echo trans("confirm_delete"); ?>');"><i class="fa fa-trash option-icon"></i><?php echo trans('delete'); ?></a> </li> </ul> </div> </td> </tr> <?php endforeach; ?> </tbody> </table> <?php if (empty($countries)): ?> <p class="text-center"> <?php echo trans("no_records_found"); ?> </p> <?php endif; ?> <div class="col-sm-12 table-ft"> <div class="row"> <div class="pull-left"> <button type="button" class="btn btn-danger" onclick="activate_inactivate_countries('inactivate');"><?php echo trans("inactivate_all"); ?></button> <button type="button" class="btn btn-success" onclick="activate_inactivate_countries('activate');"><?php echo trans("activate_all"); ?></button> </div> <div class="pull-right"> <?php echo $this->pagination->create_links(); ?> </div> </div> </div> </div> </div> </div> </div><!-- /.box-body --> </div>