{% load scheduler_tags i18n %} {% if not add %}

Job executions

{% for exec in executions %} {% endfor %}
ID STATUS Created at Enqueued at Started at Ran for Worker name Result
{{ exec.id }} {{ exec|job_status }} {{ exec.created_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|job_runtime }} {{ exec.worker_name|default:"-" }} {{ exec|job_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 %} {{ executions.paginator.count }} {% blocktranslate count counter=executions.paginator.count %}entry {% plural %}entries{% endblocktranslate %} {% endif %}

{% endif %}