Files
EagleCast/static/email-templates/import-status.html
T
h202-wq 66d9a033c9
publish-github-pages / deploy (push) Has been cancelled
EagleCast
2026-07-09 10:03:32 -04:00

20 lines
632 B
HTML

{{ define "import-status" }}
{{ template "header" . }}
<h2>{{ L.Ts "email.status.importTitle" }}</h2>
<table width="100%">
<tr>
<td width="30%"><strong>{{ L.Ts "email.status.importFile" }}</strong></td>
<td><a href="{{ RootURL }}/admin/subscribers/import">{{ .Name }}</a></td>
</tr>
<tr>
<td width="30%"><strong>{{ L.Ts "email.status.status" }}</strong></td>
<td>{{ .Status }}</td>
</tr>
<tr>
<td width="30%"><strong>{{ L.Ts "email.status.importRecords" }}</strong></td>
<td>{{ .Imported }} / {{ .Total }}</td>
</tr>
</table>
{{ template "footer" }}
{{ end }}