ok
Direktori : /proc/self/root/home2/selectio/www/geniusgroove.in/crm/application/views/section/ |
Current File : //proc/self/root/home2/selectio/www/geniusgroove.in/crm/application/views/section/sectionCreate.php |
<div class="content-wrapper"> <section class="content-header"> <h1> <i class="fa fa-mortar-board"></i> <?php echo $this->lang->line('academics'); ?> <small><?php echo $this->lang->line('student_fees1'); ?></small> </h1> </section> <!-- Main content --> <section class="content"> <div class="row"> <div class="col-md-4"> <div class="box box-primary"> <div class="box-header with-border"> <h3 class="box-title"><?php echo $this->lang->line('add_section'); ?> </h3> </div> <form action="<?php echo site_url('sections/create') ?>" 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'); $this->session->unset_userdata('msg'); ?> <?php } ?> <?php echo $this->customlib->getCSRF(); ?> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('section'); ?></label> <input autofocus="" id="section" name="section" placeholder="" type="text" class="form-control" value="<?php echo set_value('section'); ?>" /> <span class="text-danger"><?php echo form_error('section'); ?></span> </div> </div> <div class="box-footer"> <button type="button" class="btn btn-default"><?php echo $this->lang->line('cancel'); ?></button> <button type="submit" class="btn btn-info pull-right"><?php echo $this->lang->line('save'); ?></button> </div> </form> </div> </div> <div class="col-md-8"> <div class="box box-primary"> <div class="box-header with-border"> <h3 class="box-title"><?php echo $this->lang->line('section_list'); ?></h3> </div> <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('section'); ?></th> <th class="pull-right"><?php echo $this->lang->line('action'); ?></th> </tr> </thead> <tbody> <?php $count = 1; foreach ($sectionlist as $section) { ?> <tr> <td class="mailbox-name"><a href="#"> <?php echo $section['section'] ?></a></td> <td class="mailbox-date pull-right"> <a href="<?php echo base_url(); ?>sections/edit/<?php echo $section['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(); ?>sections/delete/<?php echo $section['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 $count++; } ?> </tbody> </table> </div> </div> <div class="box-footer"> <div class="mailbox-controls"> </div> </div> </div> </div> </div> </section> </div>