?
Current Path : /home1/savoy/public_html/savoyglobal.net/sims/school/application/views/Report/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/public_html/savoyglobal.net/sims/school/application/views/Report/teacher_report.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?> <span class="section_content_top"></span> <div class="section_content_inner"> <?php $attributes=array('class'=>'search_form','id'=>'validateform'); echo form_open('',$attributes); ?> <!--[if !IE]>start fieldset<![endif]--> <fieldset> <!--[if !IE]>start forms<![endif]--> <div class="forms"> <div class="backicon"> <a href="#" onclick="viewdata('teacher','viewinteacher','searchteacher','viewteacher','1')";> <img src="<?=base_url()?>assets/images/backicon.png" alt="back-icon" title="Back"/> </a> </div> <h3>Teacher Details</h3> <!--[if !IE]>start row<![endif]--> <div class="row"> <label>Teacher No</label> <div class="inputs"> <?=$teacher->teacher_no;?> </div> </div> <!--[if !IE]>end row<![endif]--> <!--[if !IE]>start row<![endif]--> <div class="row"> <label>First Name</label> <div class="inputs"> <?=$teacher->first_name;?> </div> </div> <!--[if !IE]>end row<![endif]--> <!--[if !IE]>start row<![endif]--> <div class="row"> <label>Last Name</label> <div class="inputs"> <?=$teacher->last_name;?> </div> </div> <!--[if !IE]>end row<![endif]--> <!--[if !IE]>start row<![endif]--> <div class="row"> <label>Gender</label> <div class="inputs"> <?=($teacher->gender) ?> </div> </div> <!--[if !IE]>end row<![endif]--> <!--[if !IE]>start row<![endif]--> <div class="row"> <label>Email</label> <div class="inputs"> <?=$teacher->email;?> </div> </div> <!--[if !IE]>end row<![endif]--> <!--[if !IE]>start row<![endif]--> <div class="row"> <label>Contact No</label> <div class="inputs"> <?=$teacher->contact_no;?> </div> </div> <!--[if !IE]>end row<![endif]--> <!--[if !IE]>start row<![endif]--> <div class="row"> <label>Mobile No</label> <div class="inputs"> <?=$teacher->mobile_no;?> </div> </div> <!--[if !IE]>end row<![endif]--> <!--[if !IE]>start row<![endif]--> <div class="row"> <label>Passport No</label> <div class="inputs"> <?=$teacher->passport_no;?> </div> </div> <!--[if !IE]>end row<![endif]--> </div> </fieldset> <!--[if !IE]>end fieldset<![endif]--> <!--[if !IE]>end fieldset<![endif]--> <fieldset> <!--[if !IE]>start table_wrapper<![endif]--> <h3>Subject Details</h3> <div class="table_wrapper"> <div class="table_wrapper_inner"> <table cellpadding="0" cellspacing="0" width="70%"> <tbody id="studinfodet"> <tr> <th><span>Subject Name</span></th> <th><span>Class</span></th> </tr> <?php foreach ($teacher_subject as $row) { ?> <tr> <td><?=$row['subject_name'];?></td> <td><?=$row['classlevel_code'];?></td> </tr> <?php } ?> </tbody></table> </div> <!--[if !IE]>end table_wrapper<![endif]--> </div> </fieldset> <fieldset> <!--[if !IE]>start table_wrapper<![endif]--> <h3>Qualification</h3> <div class="table_wrapper"> <div class="table_wrapper_inner"> <table cellpadding="0" cellspacing="0" width="70%"> <tbody id="studinfodet"> <tr> <th><span>Course</span></th> <th><span>University</span></th> <th><span>Passing Year</span></th> </tr> <?php foreach ($teacher_qualification as $row) { ?> <tr> <td><?=$row['course'];?></td> <td><?=$row['university'];?></td> <td><?=$row['passing_year'];?></td> </tr> <?php } ?> </tbody></table> </div> <!--[if !IE]>end table_wrapper<![endif]--> </div> </fieldset> <!--[if !IE]>start fieldset<![endif]--> <fieldset> <!--[if !IE]>start table_wrapper<![endif]--> <h3>Work Experience</h3> <div class="table_wrapper"> <div class="table_wrapper_inner"> <table cellpadding="0" cellspacing="0" width="70%"> <tbody id="studinfodet"> <tr> <th><span>Employer</span></th> <th><span>Designation</span></th> <th><span>Period</span></th> </tr> <?php foreach ($teacher_work_experience as $row) { ?> <tr> <td><?=$row['employer'];?></td> <td><?=$row['designation'];?></td> <td><?=$row['period'];?></td> </tr> <?php } ?> </tbody></table> </div> <!--[if !IE]>end table_wrapper<![endif]--> </div> </fieldset> <fieldset> <!--[if !IE]>start forms<![endif]--> <div class="forms"> <h3>Teacher Address</h3> <div class="row"> <label>Permanent Address</label> <div class="inputs"> <?=$address->address_permanent;?> </div> </div> <!--[if !IE]>end row<![endif]--> <!--[if !IE]>start row<![endif]--> <div class="row"> <label>Permanent Country</label> <div class="inputs"> <?=$address->country_permanent;?> </div> </div> <div class="row"> <label>Present Address</label> <div class="inputs"> <?=$address->address_present;?> </div> </div> <!--[if !IE]>end row<![endif]--> <!--[if !IE]>start row<![endif]--> <div class="row"> <label>Present Country</label> <div class="inputs"> <?=$address->country_present;?> </div> </div> <!--[if !IE]>end row<![endif]--> </div> <!--[if !IE]>end forms<![endif]--> </fieldset> <!--[if !IE]>end fieldset<![endif]--> <fieldset> <div class="forms"> <h3>Teacher Files</h3> <?php $teacher_file=$this->mastermodel->get_data('files',$teacher->teacher_id,'record_id'); foreach ($teacher_file as $file) { ?> <div class="gal_dir_div"> <a href="<?=base_url().$file['file_location']?>"> <img src="<?=base_url();?>assets/images/download.jpg"/> <br/> <?=$file['file_name'];?> </a> </div> <?php } ?> </div> </fieldset> <?php echo form_close(); ?> </div> <span class="section_content_bottom"></span>