2018-11-28 15:59:57 +08:00
|
|
|
{{ define "import-status" }}
|
|
|
|
{{ template "header" . }}
|
2021-01-23 22:04:30 +08:00
|
|
|
<h2>{{ L.Ts "email.status.importTitle" }}</h2>
|
2018-11-28 15:59:57 +08:00
|
|
|
<table width="100%">
|
|
|
|
<tr>
|
2021-01-23 22:04:30 +08:00
|
|
|
<td width="30%"><strong>{{ L.Ts "email.status.importFile" }}</strong></td>
|
2021-11-19 23:35:46 +08:00
|
|
|
<td><a href="{{ RootURL }}/admin/subscribers/import">{{ .Name }}</a></td>
|
2018-11-28 15:59:57 +08:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2021-01-23 22:04:30 +08:00
|
|
|
<td width="30%"><strong>{{ L.Ts "email.status.status" }}</strong></td>
|
2018-11-28 15:59:57 +08:00
|
|
|
<td>{{ .Status }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2021-01-23 22:04:30 +08:00
|
|
|
<td width="30%"><strong>{{ L.Ts "email.status.importRecords" }}</strong></td>
|
2018-11-28 15:59:57 +08:00
|
|
|
<td>{{ .Imported }} / {{ .Total }}</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
{{ template "footer" }}
|
2022-07-11 21:24:38 +08:00
|
|
|
{{ end }}
|