41 lines
1.1 KiB
Handlebars
41 lines
1.1 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>There are currently {{count}} pallets sitting in ppoo that are older than {{checkTime}} {{timeCheck}}.</p>
|
|
<table >
|
|
<thead>
|
|
<tr>
|
|
<th>Article</th>
|
|
<th>Description</th>
|
|
<th>Lot</th>
|
|
<th>ProductionDate</th>
|
|
<th>Running Number</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each items}}
|
|
<tr>
|
|
<td>{{av}}</td>
|
|
<td>{{articleDescription}}</td>
|
|
<td>{{lot}}</td>
|
|
<td>{{productionDate}}</td>
|
|
<td>{{runningNumber}}</td>
|
|
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
<div>
|
|
<p>Thank you,</p>
|
|
<p>LST Team</p>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |