{% extends base_template %} {% block title %}{{ 'title_list'|trans({}, 'SonataAdminBundle') }}{% endblock %} {% block actions %}
{% include 'SonataAdminBundle:Button:create_button.html.twig' %}
{% endblock %} {% block tab_menu %}{{ knp_menu_render(admin.sidemenu(action), {'currentClass' : 'active'}, 'list') }}{% endblock %} {% block list_table %}

{{ 'title_list'|trans({}, 'SonataAdminBundle') }}

{% if batches is defined and batches|length > 0 %} {% for batch in batches %} {% endfor %}
ID Status Total Operations Finished Operations Errored Operations Submitted At Completed At Actions
{{ batch.id }} {{ batch.status|title }} {{ 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') : '-' }} View
{% else %}
No MailChimp batches found.
{% endif %}
{% endblock %}