{% if s.schedule_next_run %}
{% trans "Next run:" %}
{{ s.schedule_next_run|date:"SHORT_DATETIME_FORMAT" }}
{% else %}
{% trans "No next run scheduled" %}
{% endif %}
{% if s.export_verbose_name == "?" %}
{% trans "Exporter not found" %}
{% elif s.error_counter >= 5 %}
{% trans "Disabled due to multiple failures" %}
{% elif s.error_counter > 0 %}
{% trans "Failed recently" %}
{% endif %}
{{ s.mail_subject }}
{% endfor %}
{% if is_paginated %}
{% include "pretixcontrol/pagination.html" %}
{% endif %}
{% endif %}
{% regroup exporters by category as category_list %}
{% for c, c_ex in category_list %}
{% if c %}