ferry/static/template/email.html
2020-08-14 21:22:11 +08:00

44 lines
1.0 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ferry</title>
</head>
<body>
<br>
{{ .Description }}
<br>
<br>
<table>
<tr>
<td style="text-align: right">标题:</td>
<td>{{ .Title }}</td>
</tr>
<tr>
<td style="text-align: right">申请人:</td>
<td>{{ .Creator }}</td>
</tr>
<tr>
<td style="text-align: right">优先级:</td>
<td>{{ .PriorityValue }}</td>
</tr>
<tr>
<td style="text-align: right">申请时间:</td>
<td>{{ .CreatedAt }}</td>
</tr>
</table>
<br>
<a href="{{ .Domain }}/#/process/handle-ticket?workOrderId={{ .Id }}&processId={{ .ProcessId }}" target="_blank">点击此处跳转到工单详情</a>
</body>
<style>
table {
border: 1px solid #ccc;
border-collapse:collapse;
}
td {
padding: 10px 15px 10px 15px;
border: 1px solid #ccc;
}
</style>
</html>