.
This commit is contained in:
@@ -1,9 +1,15 @@
|
||||
{% extends 'generic/base.html' %}
|
||||
|
||||
{% block content %}
|
||||
Attempted to send {{users_count}} emails.
|
||||
|
||||
Emails sent as below:
|
||||
{% for u, success, msg in results %}
|
||||
<p>{{u.cid}}: {{u.email}} [success={{success}}] ({{msg}})</p>
|
||||
<h2>Emails sent:</h2>
|
||||
{% for u in sent %}
|
||||
<p>{{u.cid}}: {{u.email}}</p>
|
||||
{% endfor %}
|
||||
|
||||
<h2>Emails not sent:</h2>
|
||||
{% for u, msg in not_sent %}
|
||||
<p>{{u.cid}}: {{u.email}} [{{msg}}]</p>
|
||||
{% endfor %}
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user