{% load i18n %}

Job executions

{% for exec in executions %} {% endfor %}
ID STATUS Created Scheduled Enqueued Started at Ended at Worker name Result
{{ exec.id }} {{ exec.status }} {{ exec.created_at|date:"Y-m-d, H:i:s"|default:"-" }} {{ exec.scheduled_at|date:"Y-m-d, H:i:s"|default:"-" }} {{ exec.enqueued_at|date:"Y-m-d, H:i:s"|default:"-" }} {{ exec.started_at|date:"Y-m-d, H:i:s"|default:"-" }} {{ exec.ended_at|date:"Y-m-d, H:i:s"|default:"-" }} {{ exec.worker_name|default:"-" }} {{ exec.latest_result|default:"-" }}

{% if pagination_required %} {% for i in page_range %} {% if i == executions.paginator.ELLIPSIS %} {{ executions.paginator.ELLIPSIS }} {% elif i == executions.number %} {{ i }} {% else %} {{ i }} {% endif %} {% endfor %} {% endif %} {{ executions.paginator.count }} {% blocktranslate count counter=executions.paginator.count %}entry {% plural %}entries{% endblocktranslate %}