2018-11-28 08:59:57 +01:00
|
|
|
{{ define "import-status" }}
|
|
|
|
{{ template "header" . }}
|
|
|
|
<h2>Import update</h2>
|
|
|
|
<table width="100%">
|
|
|
|
<tr>
|
|
|
|
<td width="30%"><strong>File</strong></td>
|
2019-12-01 13:16:59 +01:00
|
|
|
<td><a href="{{ RootURL }}/subscribers/import">{{ .Name }}</a></td>
|
2018-11-28 08:59:57 +01:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td width="30%"><strong>Status</strong></td>
|
|
|
|
<td>{{ .Status }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td width="30%"><strong>Records</strong></td>
|
|
|
|
<td>{{ .Imported }} / {{ .Total }}</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
{{ template "footer" }}
|
|
|
|
{{ end }}
|