{% extends "admin.html" %}
{% load url from future %}
{% block headtitle %}View Email - {% endblock %}
{% block headscript %}
{% endblock %}
{% block members_active %}
class="active"
{% endblock %}
{% block content %}
- Subject
- {{ bulk_email.subject }}
- Sent
- {{ bulk_email.created }}
- To
-
{% if bulk_email.email_expired %}
All Expired Members
{% else %}
{% if bulk_email.groups.all %}Groups: {% for group in bulk_email.groups.all %}{{ group }}{% if not forloop.last %},{% endif %}{% endfor %}
{% endif %}
{% if bulk_email.types.all %}Types: {% for type in bulk_email.types.all %}{{ type }}{% if not forloop.last %},{% endif %}{% endfor %}
{% endif %}
{% if not bulk_email.groups.all and not bulk_email.types.all %}All Members{% endif %}
{% endif %}
- Content
- {{ bulk_email.message|safe }}
{% if bulk_email.get_attachments or bulk_email.attachment %}
- Attachments
{% if bulk_email.attachment %}
- Download Attachment
{% endif %}
{% for attachment in bulk_email.get_attachments %}
{% if attachment.file %}
- {{ attachment.filename }}
{% endif %}
{% endfor %}
{% endif %}
Back to All Emails
{% endblock %}