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