mirror of
https://github.com/knadh/listmonk.git
synced 2024-11-13 02:55:04 +08:00
19 lines
632 B
HTML
19 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 }}
|