feat(notifications): migrated all from v1
This commit is contained in:
46
server/services/notifications/utils/views/downTimeCheck.hbs
Normal file
46
server/services/notifications/utils/views/downTimeCheck.hbs
Normal file
@@ -0,0 +1,46 @@
|
||||
<!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 downtimes have exceeded the max requested limit of {{secondarySetting.duration}}min</p>
|
||||
<table >
|
||||
<thead>
|
||||
<tr>
|
||||
<th>totalDuration</th>
|
||||
<th>machineAlias</th>
|
||||
<th>CTO_Code</th>
|
||||
<th>Downtime_Description</th>
|
||||
<th>groupDesc</th>
|
||||
<th>remark</th>
|
||||
<th>Downtime start</th>
|
||||
<th>Downtime finish</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{#each items}}
|
||||
<tr>
|
||||
<td>{{totalDuration}}</td>
|
||||
<td>{{machineAlias}}</td>
|
||||
<td>{{CTO_Code}}</td>
|
||||
<td>{{Downtime_Description}}</td>
|
||||
<td>{{groupDesc}}</td>
|
||||
<td>{{remark}}</td>
|
||||
<td>{{dtStart}}</td>
|
||||
<td>{{dtEnd}}</td>
|
||||
</tr>
|
||||
{{/each}}
|
||||
</tbody>
|
||||
</table>
|
||||
<div>
|
||||
<p>Thank you,</p>
|
||||
<p>LST Team</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user