{% extends base_template %} {% block title %}{{ admin.trans('list_title') }}{% endblock %} {% block list_table %}

MailChimp Batches

{% set batches = admin.getBatches() %} {% if batches|length > 0 %} {% for batch in batches %} {% endfor %}
Batch ID Status Total Operations Finished Operations Errored Operations Submitted At Completed At Response URL Actions
{{ batch.id }} {{ batch.status|upper }} {{ batch.total_operations }} {{ batch.finished_operations }} {{ batch.errored_operations }} {{ batch.submitted_at ? batch.submitted_at|date('Y-m-d H:i:s') : '-' }} {{ batch.completed_at ? batch.completed_at|date('Y-m-d H:i:s') : '-' }} {% if batch.response_body_url %} Download {% else %} - {% endif %} View Refresh
{% else %}
No batches found.
{% endif %}
{% endblock %}