44 lines
1.2 KiB
Handlebars
44 lines
1.2 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 labels have been brought back into the system either by relocate or by inventory taking order, please validate these labels and reblock them or reremove them.</p>
|
|
<table >
|
|
<thead>
|
|
<tr>
|
|
<th>AV</th>
|
|
<th>Desciption</th>
|
|
<th>Label Number</th>
|
|
<th>Last Moving Date</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{{#each items}}
|
|
<tr>
|
|
<td>{{av}}</td>
|
|
<td>{{alias}}</td>
|
|
<td>{{runningnumber}}</td>
|
|
<td>{{lastMovingDate}}</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
|
|
<div>
|
|
<p>For a removal process logistcs will need to do this in lst so a reason for the removal can be added.</p>
|
|
</div>
|
|
<div>
|
|
|
|
<p>Thank you,</p>
|
|
<p>LST Team</p>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |