ok
Direktori : /home2/selectio/www/bharath/application/views/admin/hostelroom/ |
Current File : /home2/selectio/www/bharath/application/views/admin/hostelroom/edit.php |
<?php $currency_symbol = $this->customlib->getSchoolCurrencyFormat(); ?> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> <i class="fa fa-building-o"></i> <?php echo $this->lang->line('hostel'); ?> <small><?php echo $this->lang->line('student_fees1'); ?></small> </h1> </section> <!-- Main content --> <section class="content"> <div class="row"> <?php if ($this->rbac->hasPrivilege('hostel_rooms', 'can_add') || $this->rbac->hasPrivilege('hostel_rooms', 'can_edit')) { ?> <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('edit_hostel_room'); ?></h3> </div><!-- /.box-header --> <!-- form start --> <form action="<?php echo site_url('admin/hostelroom/edit/' . $id) ?>" 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 if (isset($error_message)) { echo "<div class='alert alert-danger'>" . $error_message . "</div>"; } ?> <?php echo $this->customlib->getCSRF(); ?> <input type="hidden" name="id" value="<?php echo set_value('id', $hostelroom['id']); ?>" > <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('room_no_name'); ?></label><small class="req"> *</small> <input autofocus="" id="amount" name="room_no" placeholder="" type="text" class="form-control" value="<?php echo set_value('room_no', $hostelroom['room_no']); ?>" /> <span class="text-danger"><?php echo form_error('room_no'); ?></span> </div> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('hostel'); ?></label><small class="req"> *</small> <select id="hostel_id" name="hostel_id" class="form-control" > <option value=""><?php echo $this->lang->line('select'); ?></option> <?php foreach ($hostellist as $hostel) { ?> <option value="<?php echo $hostel['id'] ?>"<?php if (set_value('hostel_id', $hostelroom['hostel_id']) == $hostel['id']) { echo "selected =selected"; } ?>><?php echo $hostel['hostel_name'] ?></option> <?php $count++; } ?> </select> <span class="text-danger"><?php echo form_error('hostel_id'); ?></span> </div> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('room_type'); ?></label><small class="req"> *</small> <select id="room_type_id" name="room_type_id" class="form-control" > <option value=""><?php echo $this->lang->line('select'); ?></option> <?php foreach ($roomtypelist as $roomtype) { ?> <option value="<?php echo $roomtype['id'] ?>"<?php if (set_value('room_type_id', $hostelroom['room_type_id']) == $roomtype['id']) { echo "selected =selected"; } ?>><?php echo $roomtype['room_type'] ?></option> <?php $count++; } ?> </select> <span class="text-danger"><?php echo form_error('room_type_id'); ?></span> </div> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('no_of_bed'); ?></label><small class="req"> *</small> <input id="amount" name="no_of_bed" placeholder="" type="text" class="form-control" value="<?php echo set_value('no_of_bed', $hostelroom['no_of_bed']); ?>" /> <span class="text-danger"><?php echo form_error('no_of_bed'); ?></span> </div> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('cost_per_bed'); ?></label><small class="req"> *</small> <input id="amount" name="cost_per_bed" placeholder="" type="text" class="form-control" value="<?php echo set_value('cost_per_bed', $hostelroom['cost_per_bed']); ?>" /> <span class="text-danger"><?php echo form_error('cost_per_bed'); ?></span> </div> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('description'); ?></label> <textarea class="form-control" id="description" name="description" placeholder="" rows="3" placeholder=""><?php echo set_value('description', $hostelroom['description']); ?></textarea> <span class="text-danger"><?php echo form_error('description'); ?></span> </div> </div><!-- /.box-body --> <div class="box-footer"> <button type="submit" class="btn btn-info pull-right"><?php echo $this->lang->line('save'); ?></button> </div> </form> </div> </div><!--/.col (right) --> <!-- left column --> <?php } ?> <div class="col-md-<?php if ($this->rbac->hasPrivilege('hostel_rooms', 'can_add') || $this->rbac->hasPrivilege('hostel_rooms', 'can_edit')) { echo "8"; } else { echo "12"; } ?>"> <!-- general form elements --> <div class="box box-primary" id="hroom"> <div class="box-header ptbnull"> <h3 class="box-title titlefix"><?php echo $this->lang->line('hostel_room_list'); ?></h3> </div><!-- /.box-header --> <div class="box-body"> <div class="mailbox-controls"> <div class="pull-right"> </div><!-- /.pull-right --> </div> <div class="mailbox-messages table-responsive"> <div class="download_label"><?php echo $this->lang->line('hostel_room_list'); ?></div> <table class="table table-striped table-bordered table-hover example"> <thead> <tr> <th><?php echo $this->lang->line('room_no_name'); ?></th> <th><?php echo $this->lang->line('hostel'); ?></th> <th><?php echo $this->lang->line('room_type'); ?></th> <th><?php echo $this->lang->line('no_of_bed'); ?></th> <th><?php echo $this->lang->line('cost_per_bed'); ?></th> <th class="text-right no-print"><?php echo $this->lang->line('action'); ?></th> </tr> </thead> <tbody> <?php if (empty($hostelroomlist)) { ?> <?php } else { $count = 1; foreach ($hostelroomlist as $hostelroom) { ?> <tr> <td class="mailbox-name"> <a href="#" data-toggle="popover" class="detail_popover" ><?php echo $hostelroom['room_no'] ?></a> <div class="fee_detail_popover" style="display: none"> <?php if ($hostelroom['description'] == "") { ?> <p class="text text-danger"><?php echo $this->lang->line('no_description'); ?></p> <?php } else { ?> <p class="text text-info"><?php echo $hostelroom['description']; ?></p> <?php } ?> </div> </td> <td class="mailbox-name"> <?php echo $hostelroom['hostel_name'] ?></td> <td class="mailbox-name"> <?php echo $hostelroom['room_type'] ?></td> <td class="mailbox-name"> <?php echo $hostelroom['no_of_bed'] ?></td> <td class="mailbox-name"> <?php echo $currency_symbol . $hostelroom['cost_per_bed'] ?></td> <td class="mailbox-date pull-right no-print"> <?php if ($this->rbac->hasPrivilege('hostel_rooms', 'can_edit')) { ?> <a data-placement="left" href="<?php echo base_url(); ?>admin/hostelroom/edit/<?php echo $hostelroom['id'] ?>" class="btn btn-default btn-xs" data-toggle="tooltip" title="<?php echo $this->lang->line('edit'); ?>"> <i class="fa fa-pencil"></i> </a> <?php } if ($this->rbac->hasPrivilege('hostel_rooms', 'can_delete')) { ?> <a data-placement="left" href="<?php echo base_url(); ?>admin/hostelroom/delete/<?php echo $hostelroom['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> <?php } ?> </td> </tr> <?php } $count++; } ?> </tbody> </table><!-- /.table --> </div><!-- /.mail-box-messages --> </div><!-- /.box-body --> </div> </div><!--/.col (left) --> <!-- right column --> </div> <div class="row"> <div class="col-md-12"> </div><!--/.col (right) --> </div> <!-- /.row --> </section><!-- /.content --> </div><!-- /.content-wrapper --> <script type="text/javascript"> $(document).ready(function () { $('#postdate').datepicker({ format: "dd-mm-yyyy", autoclose: true }); }); </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>