listmonk/static/email-templates/import-status.html

19 lines
625 B
HTML
Raw Normal View History

{{ define "import-status" }}
{{ template "header" . }}
2020-12-19 11:55:52 +01:00
<h2>{{ .L.T "email.status.importTitle" }}</h2>
<table width="100%">
<tr>
2020-12-19 11:55:52 +01:00
<td width="30%"><strong>{{ .L.T "email.status.importFile" }}</strong></td>
<td><a href="{{ RootURL }}/subscribers/import">{{ .Name }}</a></td>
</tr>
<tr>
2020-12-19 11:55:52 +01:00
<td width="30%"><strong>{{ .L.T "email.status.status" }}</strong></td>
<td>{{ .Status }}</td>
</tr>
<tr>
2020-12-19 11:55:52 +01:00
<td width="30%"><strong>{{ .L.T "email.status.importRecords" }}</strong></td>
<td>{{ .Imported }} / {{ .Total }}</td>
</tr>
</table>
{{ template "footer" }}
{{ end }}