{% load i18n %}
{% trans "Sent to orders:" %}
{% for status in log.parsed_data.sendto %}
{{ status }}{% if forloop.revcounter > 1 %},{% endif %}
{% endfor %}
{% if log.pdata.items %}
{{ log.pdata.items|join:", " }}
{% endif %}
{% if log.pdata.filter_checkins %}
{% if log.pdata.not_checked_in %}
{% trans "All customers not checked in" %}
{% endif %}
{% if log.pdata.checkin_lists %}
{{ log.pdata.checkin_lists|join:", " }}
{% endif %}
{% endif %}
{% if log.pdata.subevent_obj %}
{{ log.pdata.subevent_obj }}
{% elif log.pdata.subevents_from %}
{{ log.pdata.subevents_from }} – {{ log.pdata.subevents_to }}
{% endif %}
{% if log.pdata.recipients == "attendees" %}
{% trans "Attendee contact addresses" %}
{% elif log.pdata.recipients == "both" %}
{% trans "All contact addresses" %}
{% else%}
{% trans "Order contact addresses" %}
{% endif %}