patashala/application/views/backend/teacher/request.php

114 lines
5.4 KiB
PHP
Raw Permalink Normal View History

<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" data-toggle="tab" href="#permissions"><i class="os-icon picons-thin-icon-thin-0015_fountain_pen"></i><span><?php echo get_phrase('permissions');?></span></a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#apply"><i class="os-icon picons-thin-icon-thin-0389_gavel_hammer_law_judge_court"></i><span><?php echo get_phrase('apply');?></span></a>
</li>
</ul>
</div>
</div>
<div class="content-i">
<div class="content-box">
<div class="element-wrapper">
<div class="tab-content">
<div class="tab-pane active" id="permissions">
<div class="element-box lined-primary shadow">
<div class="table-responsive">
<table width="100%" class="table table-lightborder table-lightfont">
<thead>
<tr>
<th><?php echo get_phrase('reason');?></th>
<th><?php echo get_phrase('description');?></th>
<th><?php echo get_phrase('user');?></th>
<th><?php echo get_phrase('from');?></th>
<th><?php echo get_phrase('until');?></th>
<th><?php echo get_phrase('file');?></th>
<th><?php echo get_phrase('status');?></th>
</tr>
</thead>
<tbody>
<?php
$count = 1;
$this->db->order_by('request_id', 'desc');
$requests = $this->db->get_where('request', array('teacher_id' => $this->session->userdata('login_user_id')))->result_array();
foreach ($requests as $row):
?>
<tr>
<td><a class="btn nc btn-rounded btn-sm btn-purple" style="color:white"><?php echo $row['title']; ?></a></td>
<td><?php echo $row['description']; ?></td>
<td><img alt="" src="<?php echo $this->crud_model->get_image_url('teacher', $this->session->userdata('login_user_id'));?>" width="25px" style="border-radius: 10px;margin-right:5px;"> <?php echo $this->db->get_where('teacher', array('teacher_id' => $row['teacher_id']))->row()->name; ?></td>
<td><a class="btn nc btn-rounded btn-sm btn-primary" style="color:white"><?php echo $row['start_date']; ?></a></td>
<td><a class="btn nc btn-rounded btn-sm btn-secondary" style="color:white"><?php echo $row['end_date']; ?></a></td>
<td>
<?php if($row['file'] == ""):?>
<p><?php echo get_phrase('no_file');?></p>
<?php endif;?>
<?php if($row['file'] != ""):?>
<a href="<?php echo base_url();?>uploads/request/<?php echo $row['file'];?>" class="btn btn-rounded btn-sm btn-primary" style="color:white"><i class="os-icon picons-thin-icon-thin-0042_attachment"></i> <?php echo get_phrase('download');?></a>
<?php endif;?>
</td>
<td>
<?php if($row['status'] == 0):?>
<a class="btn nc btn-rounded btn-sm btn-warning" style="color:white"><?php echo get_phrase('pending');?></a>
<?php endif;?>
<?php if($row['status'] == 1):?>
<a class="btn nc btn-rounded btn-sm btn-success" style="color:white"><?php echo get_phrase('approved');?></a>
<?php endif;?>
<?php if($row['status'] == 2):?>
<a class="btn nc btn-rounded btn-sm btn-danger" style="color:white"><?php echo get_phrase('rejected');?></a>
<?php endif;?>
</td>
</tr>
<?php endforeach;?>
</tbody>
</table>
</div>
</div>
</div>
<div class="tab-pane" id="apply">
<div class="element-wrapper">
<div class="element-box lined-primary">
<?php echo form_open(base_url() . 'teacher/request/create', array('enctype' => 'multipart/form-data'));?>
<h5 class="form-header"><?php echo get_phrase('apply');?></h5><br>
<div class="form-group">
<label for=""> <?php echo get_phrase('reason');?></label><input class="form-control" name="title" placeholder="" required type="text">
</div>
<div class="form-group">
<label> <?php echo get_phrase('description');?></label><textarea name="description" class="form-control" required="" rows="4"></textarea>
</div>
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label for=""> <?php echo get_phrase('from');?></label><input required class="single-daterange form-control" type="text" value="" name="start_date">
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label for=""> <?php echo get_phrase('until');?></label><input class="single-daterange form-control" type="text" required="" name="end_date" value="">
</div>
</div>
</div>
<div class="form-group">
<label for=""> <?php echo get_phrase('send_file');?></label>
<div class="input-group form-control">
<input type="file" name="file_name" id="file-3" class="inputfile inputfile-3" style="display:none"/>
<label for="file-3"><i class="os-icon picons-thin-icon-thin-0042_attachment"></i> <span><?php echo get_phrase('send_file');?>...</span></label>
</div>
</div>
<div class="form-buttons-w text-right">
<button class="btn btn-primary btn-rounded" type="submit"> <?php echo get_phrase('apply');?></button>
</div>
<?php echo form_close();?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>