{% extends "pretixcontrol/organizers/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load urlreplace %} {% load icon %} {% block inner %}

{% trans "Outgoing emails" %}

{% blocktrans trimmed with days=days %} This is an overview of all emails sent by your organizer account in the last {{ days }} days. {% endblocktrans %}

{% if mails|length == 0 and not filter_form.filtered %}

{% blocktrans trimmed %} You haven't sent any emails recently. {% endblocktrans %}

{% else %}

{% trans "Filter" %}

{% bootstrap_field filter_form.query %}
{% bootstrap_field filter_form.status %}
{% bootstrap_field filter_form.event %}
{% csrf_token %} {% for field in filter_form %} {{ field.as_hidden }} {% endfor %}
{% if page_obj.paginator.num_pages > 1 %} {% endif %} {% for m in mails %} {% endfor %}
{% trans "Subject" %} {% trans "Recipients" %} {% trans "Context" %} {% trans "Status" %} {% trans "Date" %}
{{ m.subject }} {% if m.sensitive %} {% icon "eye-slash" %} {% endif %} {{ m.to|join:", " }} {% if m.cc %}
{% trans "Cc" context "email" %}: {{ m.cc|join:", " }} {% endif %} {% if m.bcc %}
{% trans "Bcc" context "email" %}: {{ m.bcc|join:", " }} {% endif %}
{% if m.event %}
{% icon "calendar fa-fw" %} {{ m.event }}
{% endif %} {% if m.order %}
{% icon "shopping-cart fa-fw" %} {{ m.order.code }}{% if m.orderposition %}-{{ m.orderposition.positionid }}{% endif %}
{% endif %} {% if m.customer %}
{% icon "user fa-fw" %} {{ m.customer }}
{% endif %}
{% if m.status == "queued" %} {% icon "clock-o" %} {% trans "queued" %} {% elif m.status == "inflight" %} {% icon "send" %} {% trans "being sent" %} {% elif m.status == "awaiting_retry" %} {% icon "repeat" %} {% trans "will be retried" %} {% elif m.status == "failed" %} {% icon "warning" %} {% trans "failed" %} {% elif m.status == "bounced" %} {% icon "exclamation-circle" %} {% trans "bounced" %} {% elif m.status == "withheld" %} {% icon "ban" %} {% trans "withheld" %} {% elif m.status == "aborted" %} {% icon "ban" %} {% trans "aborted" %} {% elif m.status == "sent" %} {% icon "check" %} {% trans "sent" %} {% endif %} {{ m.created|date:"SHORT_DATETIME_FORMAT" }} {% if m.sent %}
{% trans "Sent:" %} {{ m.sent|date:"SHORT_DATETIME_FORMAT" }} {% endif %}
{% icon "eye" %}
{% include "pretixcontrol/pagination.html" %} {% endif %} {% endblock %}