{% extends base_template %} {% block title %}{{ admin.trans('list_title') }}{% endblock %} {% block list_table %}
| 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 |