Server IP : 192.185.129.71 / Your IP : 18.216.160.84 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/bkp/school/application/views/backend/admin/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<hr /> <div class="row"> <div class="col-md-12"> <!------CONTROL TABS START------> <ul class="nav nav-tabs bordered"> <li class="active"> <a href="#list" data-toggle="tab"><i class="entypo-menu"></i> <?php echo get_phrase('exam_list');?> </a></li> <li> <a href="#add" data-toggle="tab"><i class="entypo-plus-circled"></i> <?php echo get_phrase('add_exam');?> </a></li> </ul> <!------CONTROL TABS END------> <div class="tab-content"> <br> <!----TABLE LISTING STARTS--> <div class="tab-pane box active" id="list"> <table class="table table-bordered datatable" id="table_export"> <thead> <tr> <th><div><?php echo get_phrase('exam_name');?></div></th> <th><div><?php echo get_phrase('date');?></div></th> <th><div><?php echo get_phrase('comment');?></div></th> <th><div><?php echo get_phrase('options');?></div></th> </tr> </thead> <tbody> <?php foreach($exams as $row):?> <tr> <td><?php echo $row['name'];?></td> <td><?php echo $row['date'];?></td> <td><?php echo $row['comment'];?></td> <td> <div class="btn-group"> <button type="button" class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown"> Action <span class="caret"></span> </button> <ul class="dropdown-menu dropdown-default pull-right" role="menu"> <!-- EDITING LINK --> <li> <a href="#" onclick="showAjaxModal('<?php echo site_url('modal/popup/modal_edit_exam/'.$row['exam_id']);?>');"> <i class="entypo-pencil"></i> <?php echo get_phrase('edit');?> </a> </li> <li class="divider"></li> <!-- DELETION LINK --> <li> <a href="#" onclick="confirm_modal('<?php echo site_url('admin/exam/delete/'.$row['exam_id']);?>');"> <i class="entypo-trash"></i> <?php echo get_phrase('delete');?> </a> </li> </ul> </div> </td> </tr> <?php endforeach;?> </tbody> </table> </div> <!----TABLE LISTING ENDS---> <!----CREATION FORM STARTS----> <div class="tab-pane box" id="add" style="padding: 5px"> <div class="box-content"> <?php echo form_open(site_url('admin/exam/create') , array('class' => 'form-horizontal form-groups-bordered validate','target'=>'_top'));?> <div class="form-group"> <label class="col-sm-3 control-label"><?php echo get_phrase('exam_type');?></label> <div class="col-sm-5"> <select class="form-control select2" name="exam_type" data-validate="required" data-message-required="<?php echo get_phrase('value_required');?>"> <option value=""><?php echo get_phrase("Select Test/Exam")?></option> <option value="test"><?php echo get_phrase("Test")?></option> <option value="exam"><?php echo get_phrase("Exam")?></option> </select> </div> </div> <div class="form-group"> <label class="col-sm-3 control-label"><?php echo get_phrase('name');?></label> <div class="col-sm-5"> <input type="text" class="form-control" name="name" data-validate="required" data-message-required="<?php echo get_phrase('value_required');?>"/> </div> </div> <div class="form-group"> <label class="col-sm-3 control-label"><?php echo get_phrase('date');?></label> <div class="col-sm-5"> <input type="text" class="datepicker form-control" name="date" data-validate="required" data-message-required="<?php echo get_phrase('value_required');?>"/> </div> </div> <div class="form-group"> <label class="col-sm-3 control-label"><?php echo get_phrase('comment');?></label> <div class="col-sm-5"> <input type="text" class="form-control" name="comment"/> </div> </div> <div class="form-group"> <div class="col-sm-offset-3 col-sm-5"> <button type="submit" class="btn btn-info"><?php echo get_phrase('add_exam');?></button> </div> </div> </form> </div> </div> <!----CREATION FORM ENDS--> </div> </div> </div> <!----- DATA TABLE EXPORT CONFIGURATIONS ----> <script type="text/javascript"> jQuery(document).ready(function($) { $('#table_export').dataTable(); }); </script>