ok
Direktori : /proc/self/root/home2/selectio/www/bharath/application/views/admin/librarian/ |
Current File : //proc/self/root/home2/selectio/www/bharath/application/views/admin/librarian/librarianEdit.php |
<div class="content-wrapper"> <section class="content-header"> <h1> <i class="fa fa-book"></i> <?php echo $this->lang->line('library'); ?> </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('edit_librarian'); ?></h3> </div> <form action="<?php echo site_url('admin/librarian/edit/' . $id) ?>" id="employeeform" name="employeeform" method="post" accept-charset="utf-8" enctype="multipart/form-data"> <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><small class="req"> *</small> <input autofocus="" id="category" name="name" placeholder="" type="text" class="form-control" value="<?php echo set_value('name', $librarian['name']); ?>" /> <span class="text-danger"><?php echo form_error('name'); ?></span> </div> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('email'); ?></label><small class="req"> *</small> <input id="category" name="email" placeholder="" type="text" class="form-control" value="<?php echo set_value('email', $librarian['email']); ?>" /> <span class="text-danger"><?php echo form_error('email'); ?></span> </div> <div class="form-group"> <label for="exampleInputFile"> <?php echo $this->lang->line('gender'); ?></label><small class="req"> *</small> <select class="form-control" name="gender"> <option value=""><?php echo $this->lang->line('select'); ?></option> <?php foreach ($genderList as $key => $value) { ?> <option value="<?php echo $key; ?>" <?php if (set_value('gender', $librarian['sex']) == $key) echo "selected"; ?>><?php echo $value; ?></option> <?php } ?> </select> <span class="text-danger"><?php echo form_error('gender'); ?></span> </div> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('date_of_birth'); ?></label><small class="req"> *</small> <input id="dob" name="dob" placeholder="" type="text" class="form-control" value="<?php echo set_value('dob', date($this->customlib->getSchoolDateFormat(), $this->customlib->dateyyyymmddTodateformat($librarian['dob']))); ?>" readonly="readonly"/> <span class="text-danger"><?php echo form_error('dob'); ?></span> </div> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('address'); ?></label> <textarea id="address" name="address" placeholder="" class="form-control" ><?php echo set_value('address', $librarian['address']); ?></textarea> <span class="text-danger"><?php echo form_error('address'); ?></span> </div> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('phone'); ?></label><small class="req"> *</small> <input id="phone" name="phone" placeholder="" type="text" class="form-control" value="<?php echo set_value('phone', $librarian['phone']); ?>" /> <span class="text-danger"><?php echo form_error('phone'); ?></span> </div> <div class="form-group"> <label for="exampleInputFile"><?php echo $this->lang->line('librarian_photo'); ?> (150px X 150px)</label> <input type='file' name='file' id="file" size='20' /> </div> </div> <div class="box-footer"> <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 ptbnull"> <h3 class="box-title titlefix"><?php echo $this->lang->line('librarian_list'); ?></h3> </div> <div class="box-body"> <div class="mailbox-controls"> </div> <div class="table-responsive mailbox-messages"> <div class="download_label"><?php echo $this->lang->line('librarian_list'); ?></div> <table class="table table-striped table-bordered table-hover example"> <thead> <tr> <th><?php echo $this->lang->line('name'); ?></th> <th><?php echo $this->lang->line('email'); ?></th> <th><?php echo $this->lang->line('date_of_birth'); ?></th> <th><?php echo $this->lang->line('phone'); ?></th> <th class="text-right"><?php echo $this->lang->line('action'); ?></th> </tr> </thead> <tbody> <?php if (empty($librarianlist)) { ?> <tr> <td colspan="12" class="text-danger text-center"><?php echo $this->lang->line('no_record_found'); ?></td> </tr> <?php } else { $count = 1; foreach ($librarianlist as $librarian) { ?> <tr> <td class="mailbox-name"> <?php echo $librarian['name'] ?></td> <td class="mailbox-name"> <?php echo $librarian['email'] ?></td> <td class="mailbox-name"> <?php echo date($this->customlib->getSchoolDateFormat(), $this->customlib->dateyyyymmddTodateformat($librarian['dob'])); ?></td> <td class="mailbox-name"> <?php echo $librarian['phone'] ?></td> <td class="mailbox-date pull-right""> <a href="<?php echo base_url(); ?>admin/librarian/edit/<?php echo $librarian['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(); ?>admin/librarian/delete/<?php echo $librarian['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> </div> </div> </section> </div> <script type="text/javascript"> $(document).ready(function () { var date_format = '<?php echo $result = strtr($this->customlib->getSchoolDateFormat(), ['d' => 'dd', 'm' => 'mm', 'Y' => 'yyyy',]) ?>'; $('#dob,#admission_date').datepicker({ format: date_format, autoclose: true }); }); </script>