{% extends "admin/change_form.html" %} {% load i18n %} {% block after_related_objects %} {% if executions %}

Job executions

{% for exec in executions %} {% endfor %}
ID STATUS Started at Ended at Worker name Result
{{ exec.id }} {{ exec.status }} {{ exec.started_at|default:"-" }} {{ exec.ended_at|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 %}

{% endif %} {% endblock %}