patashala/application/views/backend/teacher/teachers.php
Vivek a53135a78d Added based code
Added base code to the repo
2024-02-07 20:19:28 +05:30

53 lines
2.5 KiB
PHP
Executable File

<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();?>teacher/teacher_list/"><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>
</ul>
</div>
</div>
<div class="content-i">
<div class="content-box">
<div class="tab-content">
<div class="col-lg-12">
<div class="element-wrapper">
<div class="element-box lined-primary shadow">
<div class="table-responsive">
<table id="dataTable1" width="100%" class="table table-striped table-lightfont">
<thead>
<tr>
<th><?php echo get_phrase('name');?></th>
<th><?php echo get_phrase('email');?></th>
<th><?php echo get_phrase('birthday');?></th>
<th><?php echo get_phrase('send_message');?></th>
</tr>
</thead>
<tbody>
<?php
$this->db->order_by('teacher_id', 'desc');
$teachers = $this->db->get('teacher')->result_array();
foreach($teachers as $row):
?>
<tr>
<td><img alt="" src="<?php echo $this->crud_model->get_image_url('teacher', $row['teacher_id']);?>" width="25px" style="border-radius: 10px;margin-right:5px;"> <?php echo $row['name']; ?></td>
<td><?php echo $row['email']; ?></td>
<?php $data = 'teacher' ."-".$row['teacher_id'];
$send_data = base64_encode($data);
?>
<td><div class="pt-btn"><a class="btn nc btn-purple btn-sm btn-rounded" style="color:white"><i class="os-icon picons-thin-icon-thin-0447_gift_wrapping"></i> <?php echo $row['birthday']; ?></div></td>
<td><div class="pt-btn"><a class="btn btn-success btn-sm btn-rounded" style="color:white" href="<?php echo base_url();?>teacher/message/message_new/<?php echo $send_data;?>"><i class="os-icon picons-thin-icon-thin-0317_send_post_paper_plane"></i> <?php echo get_phrase('send_message');?></a></div></td>
</tr>
<?php endforeach;?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>