| Server IP : 188.114.96.2 / Your IP : 104.23.243.200 Web Server : Apache/2.4.59 (Debian) System : Linux EDL-STRETCH 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64 User : edlftp ( 1002) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/git/sms.edl.codes.solutions/application/views/backend/admin/course/ |
Upload File : |
<div class="tab-pane box col-sm-12" id="contract" style="padding: 5px">
<div class="box-content">
<?php echo form_open(base_url() . '#' , array('class' => 'form-horizontal form-groups-bordered validate','target'=>'_top', 'id'=>'validate-form'));?>
<div class="padded">
<br><br>
<div class="form-group">
<label for="field-2" class="col-sm-3 control-label"><?php echo get_phrase('Course_name');?></label>
<div class="col-sm-5">
<div class="row">
<select name="name_C" id="name_C" class="form-control select22" style="width:100%;" data-validate="required" data-message-required="<?php echo get_phrase('value_required'); ?>">
<option value=""><?php echo get_phrase('select_course_name'); ?></option>
<?php
$courseList = $this->crud_model->get_courses();
foreach ($courseList as $row):
?>
<option value="<?php echo $row['ID']; ?>"><?php echo $row['CourseName']; ?></option>
<?php
endforeach;
?>
</select>
</div>
</div>
</div>
<div class="col-sm-12 form-group">
<hr>
<h6>Teacher Contract</h6>
<table class="table-bordered datatable" id="table_contract">
<thead>
<th>#</th>
<th><? echo get_phrase('teacher_name');?></th>
<th><? echo get_phrase('course_name');?></th>
<th><? echo get_phrase('course_hours');?></th>
<th><? echo get_phrase('course_price');?> (htva)</th>
<th><? echo get_phrase('teacher_price');?> (htva)</th>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</form>
</div>
</div>