44 lines
1.3 KiB
Handlebars
44 lines
1.3 KiB
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{{!-- <link rel="stylesheet" href="styles/styles.css" /> --}}
|
|
{{> styles}}
|
|
</head>
|
|
<body>
|
|
<p>All,</p>
|
|
<p>The below are cycle counts that have been in progress for longer than {{checkTime}} min(s). </p>
|
|
<table >
|
|
<thead>
|
|
<tr>
|
|
<th>WarehouseID</th>
|
|
<th>Warehouse</th>
|
|
<th>LocationID</th>
|
|
<th>Location</th>
|
|
<th>Cycle count Started</th>
|
|
<th>Started by</th>
|
|
{{!-- <th>Downtime finish</th> --}}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each items}}
|
|
<tr>
|
|
<td>{{idWarehouse}}</td>
|
|
<td>{{warehouse}}</td>
|
|
<td>{{locationId}}</td>
|
|
<td>{{location}}</td>
|
|
<td>{{cycleCountStartAt}}</td>
|
|
<td>{{blockedBy}}</td>
|
|
{{!-- <td>{{dtEnd}}</td> --}}
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
<div>
|
|
<p>Thank you,</p>
|
|
<p>LST Team</p>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |