You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
2.1 KiB
PHTML
58 lines
2.1 KiB
PHTML
2 years ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<title>AdminKW | Item Inquiry Report</title>
|
||
|
<!-- Tell the browser to be responsive to screen width -->
|
||
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||
|
<!-- Bootstrap 3.3.6 -->
|
||
|
<link rel="stylesheet" href="adminlte/bootstrap/css/bootstrap.min.css">
|
||
|
<!-- Font Awesome -->
|
||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css">
|
||
|
<!-- Ionicons -->
|
||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
|
||
|
<!-- Theme style -->
|
||
|
<link rel="stylesheet" href="adminlte/dist/css/AdminLTE.min.css">
|
||
|
|
||
|
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||
|
<!--[if lt IE 9]>
|
||
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
|
||
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
||
|
<![endif]-->
|
||
|
</head>
|
||
|
<!-- <body onload="window.print();"> -->
|
||
|
<body>
|
||
|
<div class="wrapper">
|
||
|
<section class="invoice">
|
||
|
<div class="row">
|
||
|
<div class="col-xs-12">
|
||
|
<h2 class="page-header">
|
||
|
Karat World Item Inquiry Log
|
||
|
<small class="pull-right">Date: <?php echo $currDate; ?></small>
|
||
|
</h2>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="row">
|
||
|
|
||
|
</div>
|
||
|
<div class="row">
|
||
|
<div class="col-xs-12 table-responsive">
|
||
|
<table class="table table-striped">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Category</th>
|
||
|
<th>Item Code</th>
|
||
|
<th>Model Number</th>
|
||
|
<th>Hit Count</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody><?php echo $htmlTableList; ?></tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|