ok
Direktori : /proc/thread-self/root/home2/selectio/www/bharath/application/views/admin/grade/ |
Current File : //proc/thread-self/root/home2/selectio/www/bharath/application/views/admin/grade/creategrade.php |
<div class="content-wrapper"> <section class="content-header"> <h1> <i class="fa fa-map-o"></i> <?php echo $this->lang->line('examinations'); ?> <small><?php echo $this->lang->line('student_fee1'); ?></small></h1> </section> <section class="content"> <div class="row"> <?php if ($this->rbac->hasPrivilege('marks_grade', 'can_add')) { ?> <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_grade'); ?></h3> </div> <form id="form1" action="<?php echo site_url('admin/grade') ?>" 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(); ?> <div class="form-group"> <label><?php echo $this->lang->line('exam') . " " . $this->lang->line('type') ?><small class="req">*</small></label> <select autofocus="" id="name" name="exam_type" placeholder="" type="text" class="form-control"> <option value=""><?php echo $this->lang->line('select'); ?></option> <?php foreach ($examType as $examType_key => $examType_value) { ?> <option value="<?php echo $examType_key; ?>"><?php echo $examType_value; ?></option> <?php } ?> </select> <span class="text-danger"><?php echo form_error('exam_type'); ?></span> </div> <div class="form-group"> <label><?php echo $this->lang->line('grade_name'); ?><small class="req"> *</small></label> <input 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 class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('percent_from'); ?><small class="req"> *</small></label> <input id="mark_from" name="mark_from" placeholder="" type="text" class="form-control" value="<?php echo set_value('mark_from'); ?>" /> <span class="text-danger"><?php echo form_error('mark_from'); ?></span> </div> <div class="form-group"> <label><?php echo $this->lang->line('percent_upto'); ?><small class="req"> *</small></label> <input id="mark_upto" name="mark_upto" placeholder="" type="text" class="form-control" value="<?php echo set_value('mark_upto'); ?>" /> <span class="text-danger"><?php echo form_error('mark_upto'); ?></span> </div> <div class="form-group"> <label><?php echo $this->lang->line('grade') . " " . $this->lang->line('point'); ?><small class="req"> *</small></label> <input autofocus="" id="grade_point" name="grade_point" placeholder="" type="text" class="form-control" value="<?php echo set_value('grade_point'); ?>" /> <span class="text-danger"><?php echo form_error('grade_point'); ?></span> </div><!--./form-group--> <div class="form-group"> <label><?php echo $this->lang->line('description'); ?></label> <textarea class="form-control" id="description" name="description" placeholder="" rows="3" placeholder=""><?php echo set_value('description'); ?></textarea> <span class="text-danger"><?php echo form_error('description'); ?></span> </div><!--./form-group--> </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> <?php } ?> <div class="col-md-<?php if ($this->rbac->hasPrivilege('marks_grade', 'can_add')) { echo "8"; } else { echo "12"; } ?>"> <!-- general form elements --> <div class="box box-primary"> <div class="box-header ptbnull"> <h3 class="box-title titlefix"><?php echo $this->lang->line('grade_list'); ?></h3> <div class="box-tools pull-right"> </div><!-- /.box-tools --> </div><!-- /.box-header --> <div class="box-body"> <div class="mailbox-controls"> <div class="pull-right"> </div><!-- /.pull-right --> </div> <div class="table-responsive mailbox-messages"> <div class="download_label"><?php echo $this->lang->line('grade_list'); ?></div> <table class="table table-striped table-bordered table-hover"> <thead> <tr> <th><?php echo $this->lang->line('exam')." ".$this->lang->line('type');?></th> <th> <table width="100%"> <tr> <th width="24%"><?php echo $this->lang->line('grade_name'); ?></th> <th width="40%"><?php echo $this->lang->line('percent_from')." / ".$this->lang->line('upto');?></th> <th width="20%"><?php echo $this->lang->line('grade')." ".$this->lang->line('point');?></th> <th class="text-right"><?php echo $this->lang->line('action'); ?></th> </tr> </table> </th> </tr> </thead> <tbody> <?php if (!empty($listgrade)) { foreach ($listgrade as $grade) { ?> <tr> <td class="mailbox-name"> <a href="#" data-toggle="popover" class="detail_popover" ><?php echo $grade['exm_type_value']; ?></a> </td> <td class="mailbox-name"> <table width="100%"> <?php if (!empty($grade['exam_grade_values'])) { foreach ($grade['exam_grade_values'] as $grade_key => $grade_value) { ?> <tr> <td width="24%"><?php echo $grade_value->name ?></td> <td width="40%"><?php echo $grade_value->mark_upto . " " . $this->lang->line('to') . " " . $grade_value->mark_from; ?> </td> <td width="20%"><?php echo $grade_value->point ?> </td> <td class="text-right"> <?php if ($this->rbac->hasPrivilege('marks_grade', 'can_edit')) { ?> <a data-placement="left" href="<?php echo base_url(); ?>admin/grade/edit/<?php echo $grade_value->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('marks_grade', 'can_delete')) { ?> <a data-placement="left" href="<?php echo base_url(); ?>admin/grade/delete/<?php echo $grade_value->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 } } ?> </table> </td> </tr> <?php } } ?> </tbody> </table> </div><!-- /.mail-box-messages --> </div><!-- /.box-body --> </div> </div> </div> </section> </div> <script type="text/javascript"> $(document).ready(function () { $('#postdate').datepicker({ format: "dd-mm-yyyy", autoclose: true }); $("#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>