{% extends '@DWGinger/job/index.html.twig' %} {% block table_header %} {{ 'table_header.job.createdAt'|trans }} {{ 'table_header.job.failedAt'|trans }} {{ 'table_header.job.queue'|trans }} {{ 'table_header.job.command'|trans }} {{ 'table_header.job.input'|trans }} {{ 'table_header.job.output'|trans }} {% endblock %} {% block table_body %} {% for job in pagination %} {{ job.failed_at ? job.failed_at|date("d.m.Y H:i") : 'n/a' }} {{ job.failed_at ? job.failed_at|date("d.m.Y H:i") : 'n/a' }} {%- if job.message.command is defined %} {{ job.message.command|trans }} {% else %} {{ job.class }} {% endif -%} {%- if job.message.command is defined %} {{ ('label.job.command.'~job.message.command)|trans }} {% else %} {{ job.class }} {% endif -%} {%- if job.message.input is defined %}{{ job.message.input }}{% endif %} {{ job.exception_message }} {% endfor %} {% endblock %}