{% extends "admin/change_list.html" %}
{% load i18n admin_modify mailchimp_admin_tags %}
{% block bodyclass %}change-list{% endblock %}
{% block breadcrumbs %}{% if not is_popup %}
{% block object-tools %}
{% endblock %}
{% trans "Log" %}
{% trans "Subject" %} |
{% trans "Sent Date" %} |
{% for camp in paginator.objects %}
{{ camp.mc.subject }} |
{{ camp.sent_date }} |
{% endfor %}
{% if paginator.has_pages %}
{% if not paginator.is_first %}
{% trans "First" %}
{% endif %}
{% for bullet in paginator.bullets %}
{% if bullet.active %}
{{ bullet.number }}
{% else %}
{{ bullet.number }}
{% endif %}
{% endfor %}
{% if not paginator.is_last %}
{% trans "Last" %}
{% endif %}
{% endif %}
{% trans "Queue" %}
{% trans "Subject" %} |
{% trans "Actions" %} |
{% for obj in queue %}
{{ obj.subject }} {% trans "via" %} {{ obj.get_list.name }} ({{ obj.get_list.id }}) |
{% if request.user|can_dequeue:obj %}{% trans "Send Now!" %} | {% trans "Cancel!" %}{% else %} {% endif %} |
{% empty %}
{% trans "No Campaigns in the Queue" %} |
{% endfor %}
{% endblock %}