File: /home/imensosw/www/imenso.co/dev/CaseManagement_design/report-task.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">
<div class="row">
<div class="col-4">
<div class="form-group">
<label>Search</label>
<input type="text" id="name" placeholder="" class="form-control" >
</div>
</div>
<div class="col-4">
<label>Status</label>
<select data-placeholder="Choose a Country..." class="chosen-select" tabindex="3">
<option >Select Some option</option>
<option >Open</option>
<option >Pending</option>
<option >Close</option>
</select>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="table-responsive">
<table class="table custom-table txt-dark">
<thead>
<tr>
<th>ID</th>
<th> Case Title </th>
<th> Task Name </th>
<th> Investigator </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="#">Regular First Appeal</a> </td>
<td> <a href="#">Task Name</a> </td>
<td><a href="">Cecelia Bradley </a></td>
<td><a href="" class="txt-warning">Open</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="#">Sales Tax Cases </a> </td>
<td> <a href="#">Task Name 1</a> </td>
<td><a href="">Leah Sherman </a></td>
<td><a href="" class="txt-info">Pending</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="#">Service Tax Appeal </a> </td>
<td> <a href="#">Task Name 2</a> </td>
<td><a href="">Lida Fitzgerald </a></td>
<td><a href="" class="txt-muted">Closed</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="#">Transfer Criminal Petition</a> </td>
<td> <a href="#">Task Name 3</a> </td>
<td><a href="">Stella Johnson </a></td>
<td><a href="" class="txt-info">Pending</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 Task");
$("#sidebar>ul#setActiveOnNav>li").find("#distributor_active").addClass('active');
$("#sidebar>ul#setActiveOnNav>li").find("#distributor_list").addClass('show');
});
</script>