20 lines
632 B
HTML
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 }}
|