File: /home/imensosw/public_html/imenso.co/dev/CaseManagement_design/report-investigator.php
<?php include 'header.php';?>
<?php include 'top-menu.php';?>
<div class="container-scroller">
<?php include 'sidebar.php';?>
<div class="page-body-wrapper animate">
<div class="main-panel">
<div class="content-wrapper pb-0">
<div class="search_area">
<div class="container">
<div class="row mb-3">
<div class="col-7 col-md-5">
<div class="form-group">
<label>Search</label>
<input type="text" id="name" placeholder="" class="form-control" >
</div>
</div>
</div>
</div>
</div>
<div class="table-responsive">
<table class="table custom-table txt-dark">
<thead>
<tr>
<th> ID </th>
<th> Investigator </th>
<th> Task </th>
<th> Status </th>
<th class="text-center" width="120"> Action </th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="#">0001</a></td>
<td> <a href="#">Cecelia Bradley</a> </td>
<td>2</td>
<td><a href="3">Active</a></td>
<td class="text-center">
<a href="#" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#editDistributor"> <i class="fas fa-download"></i> </a>
<a href="#" class="btn btn-sm btn-default"> <i class="fas fa-eye"></i> </a>
</td>
</tr>
<tr>
<td><a href="#">0002</a></td>
<td> <a href="#">Leah Sherman</a> </td>
<td>10</td>
<td><a href="3" class="txt-muted">Inactive</a></td>
<td class="text-center">
<a href="#" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#editDistributor"> <i class="fas fa-download"></i> </a>
<a href="#" class="btn btn-sm btn-default"> <i class="fas fa-eye"></i> </a>
</td>
</tr>
<tr>
<td><a href="#">0003</a></td>
<td> <a href="#">Lida Fitzgerald</a> </td>
<td>12</td>
<td><a href="3">Active</a></td>
<td class="text-center">
<a href="#" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#editDistributor"> <i class="fas fa-download"></i> </a>
<a href="#" class="btn btn-sm btn-default"> <i class="fas fa-eye"></i> </a>
</td>
</tr>
<tr>
<td><a href="#">0004<a></td>
<td> <a href="#">Stella Johnson</a> </td>
<td>1</td>
<td><a href="3" class="txt-muted">Inactive</a></td>
<td class="text-center">
<a href="#" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#editDistributor"> <i class="fas fa-download"></i> </a>
<a href="#" class="btn btn-sm btn-default"> <i class="fas fa-eye"></i> </a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<?php include 'copyrighte.php';?>
</div>
</div>
</div>
<?php include 'footer.php';?>
<script type="text/javascript">
$(document).ready(function(){
$("#heading").text("Report Investigator");
$("#sidebar>ul#setActiveOnNav>li").find("#distributor_active").addClass('active');
$("#sidebar>ul#setActiveOnNav>li").find("#distributor_list").addClass('show');
});
</script>