{% extends base_template %} {% block title %}{{ admin.trans('show_title') }}{% endblock %} {% block show %}
| Batch ID | {{ batch.id }} |
|---|---|
| Status | {{ batch.status|upper }} |
| Total Operations | {{ batch.total_operations }} |
| Finished Operations | {{ batch.finished_operations }} |
| Errored Operations | {{ batch.errored_operations }} |
| Submitted At | {{ batch.submitted_at ? batch.submitted_at|date('Y-m-d H:i:s') : '-' }} |
| Completed At | {{ batch.completed_at ? batch.completed_at|date('Y-m-d H:i:s') : '-' }} |
| Response URL | {% if batch.response_body_url %} Download Response {% else %} - {% endif %} |