ok
Direktori : /home2/selectio/public_html/bharath/application/views/feecategory/ |
Current File : /home2/selectio/public_html/bharath/application/views/feecategory/feecategoryList.php |
<?php $currency_symbol = $this->customlib->getSchoolCurrencyFormat(); ?> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <section class="content-header"> <h1> <i class="fa fa-credit-card"></i> <?php echo $this->lang->line('fees_collection'); ?></h1> </section> <!-- Main content --> <section class="content"> <div class="row"> <div class="col-md-4"> <!-- Horizontal Form --> <div class="box box-primary"> <div class="box-header with-border"> <h3 class="box-title"><?php echo $this->lang->line('add_fee_category'); ?></h3> </div><!-- /.box-header --> <form id="form1" action="<?php echo base_url() ?>feecategory" id="employeeform" name="employeeform" method="post" accept-charset="utf-8"> <div class="box-body"> <?php if ($this->session->flashdata('msg')) { ?> <?php echo $this->session->flashdata('msg') ?> <?php } ?> <?php echo $this->customlib->getCSRF(); ?> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('name'); ?></label> <input autofocus="" id="name" name="name" placeholder="" type="text" class="form-control" value="<?php echo set_value('name'); ?>" /> <span class="text-danger"><?php echo form_error('name'); ?></span> </div> </div><!-- /.box-body --> <div class="box-footer"> <button type="button" id="btnreset" class="btn btn-default"><?php echo $this->lang->line('reset'); ?></button> <button type="submit" class="btn btn-info pull-right"><?php echo $this->lang->line('save'); ?></button> </div> </form> </div> </div><!--/.col (right) --> <!-- left column --> <div class="col-md-8"> <!-- general form elements --> <div class="box box-primary"> <div class="box-header with-border"> <h3 class="box-title"><?php echo $this->lang->line('fees_category_list'); ?></h3> <div class="box-tools pull-right"> </div><!-- /.box-tools --> </div><!-- /.box-header --> <div class="box-body"> <div class="table-responsive mailbox-messages"> <table class="table table-hover table-striped"> <thead> <tr> <th><?php echo $this->lang->line('name'); ?> </th> <th class="pull-right"><?php echo $this->lang->line('action'); ?></th> </tr> </thead> <tbody> <?php if (empty($feecategorylist)) { ?> <tr> <td colspan="2" class="text-danger text-center"><?php echo $this->lang->line('no_record_found'); ?></td> </tr> <?php } else { foreach ($feecategorylist as $feecategory) { ?> <tr> <td class="mailbox-name"> <?php echo $feecategory['category'] ?> </td> <td class="mailbox-date pull-right""> <a href="<?php echo base_url(); ?>feecategory/edit/<?php echo $feecategory['id'] ?>" class="btn btn-default btn-xs" data-toggle="tooltip" title="<?php echo $this->lang->line('edit'); ?>"> <i class="fa fa-pencil"></i> </a> <a href="<?php echo base_url(); ?>feecategory/delete/<?php echo $feecategory['id'] ?>" class="btn btn-default btn-xs" data-toggle="tooltip" title="<?php echo $this->lang->line('delete'); ?>" onclick="return confirm('<?php echo $this->lang->line('delete_confirm') ?>');"> <i class="fa fa-remove"></i> </a> </td> </tr> <?php } } ?> </tbody> </table><!-- /.table --> </div><!-- /.mail-box-messages --> </div><!-- /.box-body --> <div class="box-footer"> <div class="mailbox-controls"> <div class="pull-right"> </div><!-- /.pull-right --> </div> </div> </div> </div><!--/.col (left) --> <!-- right column --> </div> <div class="row"> <!-- left column --> <!-- right column --> <div class="col-md-12"> </div><!--/.col (right) --> </div> <!-- /.row --> </section><!-- /.content --> </div><!-- /.content-wrapper --> <script type="text/javascript"> $(document).ready(function () { $("#btnreset").click(function () { $("#form1")[0].reset(); }); }); </script> <script> $(document).ready(function () { $('.detail_popover').popover({ placement: 'right', trigger: 'hover', container: 'body', html: true, content: function () { return $(this).closest('td').find('.fee_detail_popover').html(); } }); }); </script>