{% extends "admin.html" %} {% load url from future %} {% block headtitle %}Bulk Emails - {% endblock %} {% block emails_active %}active{% endblock %} {% block content %}
{% if scheduled_emails %}

Scheduled Emails

{% for email in scheduled_emails %} {% endfor %}
Subject To Scheduled Date
{{ email.subject }} {% if email.email_expired %}All Expired Members{% else %}{% if email.groups.all %}Groups: {% for group in email.groups.all %}{{ group }}{% if not forloop.last %},{% endif %}{% endfor %}{% endif %} {% if email.types.all %}Types: {% for type in email.types.all %}{{ type }}{% if not forloop.last %},{% endif %}{% endfor %}{% endif %}{% if not email.groups.all and not email.types.all %}All Members{% endif %}{% endif %} {{ email.scheduled_date }}
{% endif %}

Previously Sent Emails

{% if emails %} {% for email in emails %} {% endfor %}
Subject To Sent
{{ email.subject }} {% if email.email_expired %}All Expired Members{% else %}{% if email.groups.all %}Groups: {% for group in email.groups.all %}{{ group }}{% if not forloop.last %},{% endif %}{% endfor %}{% endif %} {% if email.types.all %}Types: {% for type in email.types.all %}{{ type }}{% if not forloop.last %},{% endif %}{% endfor %}{% endif %}{% if not email.groups.all and not email.types.all %}All Members{% endif %}{% endif %} {{ email.created }}
{% else %}

You have not sent any bulk emails yet.

{% endif %}
{% endblock %}