mirror of
https://github.com/knadh/listmonk.git
synced 2024-11-15 12:05:50 +08:00
c24c19b120
- Add notifications for campaign state change - Add notifications for import state change Related changes. - Add a new 'templates' directory with HTML templates - Move the static campaign template as a .tpl file into it - Change Messenger.Push() to accept multiple recipients - Change exhaustCampaign()'s behaviour to pass metadata to admin emails
19 lines
No EOL
512 B
HTML
19 lines
No EOL
512 B
HTML
{{ define "import-status" }}
|
|
{{ template "header" . }}
|
|
<h2>Import update</h2>
|
|
<table width="100%">
|
|
<tr>
|
|
<td width="30%"><strong>File</strong></td>
|
|
<td><a href="{{ .RootURL }}/subscribers/import">{{ .Name }}</a></td>
|
|
</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 }} |