122 lines
6.9 KiB
PHP
Executable File
122 lines
6.9 KiB
PHP
Executable File
<?php $running_year = $this->db->get_where('settings' , array('type' => 'running_year'))->row()->description; ?>
|
|
<div class="content-w">
|
|
<div class="os-tabs-w menu-shad">
|
|
<div class="os-tabs-controls">
|
|
<ul class="nav nav-tabs upper">
|
|
<li class="nav-item">
|
|
<a class="nav-link active" href="<?php echo base_url();?>admin/attendance/"><i class="os-icon picons-thin-icon-thin-0729_student_degree_science_university_school_graduate"></i><span><?php echo get_phrase('students');?></span></a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="<?php echo base_url();?>admin/teacher_attendance/"><i class="os-icon picons-thin-icon-thin-0704_users_profile_group_couple_man_woman"></i><span><?php echo get_phrase('teachers');?></span></a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="<?php echo base_url();?>admin/attendance_report/"><i class="os-icon picons-thin-icon-thin-0386_graph_line_chart_statistics"></i><span><?php echo get_phrase('student_attendance_report');?></span></a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="<?php echo base_url();?>admin/teacher_attendance_report/"><i class="os-icon picons-thin-icon-thin-0386_graph_line_chart_statistics"></i><span><?php echo get_phrase('teacher_attendance_report');?></span></a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="content-i">
|
|
<div class="content-box">
|
|
<?php echo form_open(base_url() . 'admin/attendance_selector/', array('class' => 'form m-b'));?>
|
|
<div class="row">
|
|
<div class="col-sm-4">
|
|
<div class="form-group"> <label class="gi" for=""><?php echo get_phrase('class');?>:</label>
|
|
<select name="class_id" class="form-control" required="" onchange="select_section(this.value)">
|
|
<option value=""><?php echo get_phrase('select');?></option>
|
|
<?php
|
|
$classes = $this->db->get('class')->result_array();
|
|
foreach ($classes as $row):?>
|
|
<option value="<?php echo $row['class_id']; ?>"
|
|
<?php if ($class_id == $row['class_id']) echo 'selected'; ?>><?php echo $row['name']; ?></option>
|
|
<?php endforeach; ?>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-3">
|
|
<div class="form-group"> <label class="gi" for=""><?php echo get_phrase('section');?>:</label>
|
|
<select name="section_id" id="section_id" class="form-control">
|
|
<?php $sections = $this->db->get_where('section', array('class_id' => $class_id))->result_array();
|
|
foreach ($sections as $row): ?>
|
|
<option value="<?php echo $row['section_id']; ?>"
|
|
<?php if ($section_id == $row['section_id']) echo 'selected'; ?>>
|
|
<?php echo $row['name']; ?>
|
|
</option>
|
|
<?php endforeach; ?>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-3">
|
|
<div class="form-group"> <label class="gi" for=""><?php echo get_phrase('date');?>:</label>
|
|
<input class="single-daterange form-control" placeholder="Date" required="" name="timestamp" type="text" value="<?php echo date("m/d/Y", $timestamp); ?>"> </div>
|
|
</div>
|
|
<div class="col-sm-2">
|
|
<div class="form-group"> <button class="btn btn-primary btn-rounded btn-upper" style="margin-top:20px" type="submit"><span><?php echo get_phrase('view');?></span></button></div>
|
|
</div>
|
|
</div>
|
|
<input type="hidden" name="year" value="<?php echo $running_year;?>">
|
|
<?php echo form_close();?>
|
|
<div class="element-box lined-primary shadow">
|
|
<?php echo form_open(base_url() . 'admin/attendance_update/' . $class_id . '/' . $section_id . '/' . $timestamp); ?>
|
|
<h5 class="form-header"><?php echo get_phrase('attendance');?></h5><br>
|
|
<div class="table-responsive">
|
|
<table class="table table-lightborder">
|
|
<thead>
|
|
<tr>
|
|
<th style="text-align: center;"><?php echo get_phrase('student');?></th>
|
|
<th style="text-align: center;"><?php echo get_phrase('roll');?></th>
|
|
<th style="text-align: center;"><?php echo get_phrase('status');?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
$count = 1;
|
|
$attendance_of_students = $this->db->get_where('attendance', array(
|
|
'class_id' => $class_id,
|
|
'section_id' => $section_id,
|
|
'year' => $running_year,
|
|
'timestamp' => $timestamp
|
|
))->result_array();
|
|
foreach ($attendance_of_students as $row):
|
|
?>
|
|
<tr>
|
|
<td style="min-width:170px;">
|
|
<img alt="" src="<?php echo $this->crud_model->get_image_url('student', $row['student_id']);?>" width="25px" style="border-radius: 10px;margin-right:5px;"> <?php echo $this->db->get_where('student', array('student_id' => $row['student_id']))->row()->name; ?>
|
|
</td>
|
|
<td style="text-align: center;"><?php echo $this->db->get_where('enroll', array('student_id' => $row['student_id']))->row()->roll; ?></td>
|
|
<td style="text-align: center;" nowrap>
|
|
<div class="form-check">
|
|
<label class="form-check-label"><input checked class="form-check-input" <?php if ($row['status'] == 1) echo 'checked'; ?> name="status_<?php echo $row['attendance_id']; ?>" type="radio" value="1" style="margin-left:5px"><?php echo get_phrase('present');?></label>
|
|
<label class="form-check-label"><input class="form-check-input" <?php if ($row['status'] == 3) echo 'checked'; ?> name="status_<?php echo $row['attendance_id']; ?>" type="radio" value="3" style="margin-left:5px"><?php echo get_phrase('late');?></label>
|
|
<label class="form-check-label"><input class="form-check-input" <?php if ($row['status'] == 2) echo 'checked'; ?> name="status_<?php echo $row['attendance_id']; ?>" type="radio" value="2" style="margin-left:5px"><?php echo get_phrase('absent');?></label>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</tbody>
|
|
</table>
|
|
<div class="form-buttons-w text-center">
|
|
<button class="btn btn-success btn-rounded" type="submit"><?php echo get_phrase('update');?></button>
|
|
</div>
|
|
</div>
|
|
<?php echo form_close();?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<script type="text/javascript">
|
|
function select_section(class_id)
|
|
{
|
|
$.ajax({
|
|
url: '<?php echo base_url(); ?>admin/get_sectionss/' + class_id,
|
|
success:function (response)
|
|
{
|
|
jQuery('#section_holder').html(response);
|
|
}
|
|
});
|
|
}
|
|
</script>
|