{% if executions | length == 0 %}
No executions{% if active_status %} matching "{{ active_status }}"{% endif %}.
{% else %}
{% for exec in executions %} {% endfor %}
ID TRIGGERED STATUS EXIT DURATION
{{ exec.id[:8] }} {{ exec.triggered_at }} {{ exec.status | upper }} {{ exec.exit_code if exec.exit_code is defined and exec.exit_code is not none else '—' }} {{ exec.duration if exec.duration is defined and exec.duration is not none else '—' }}
{{ (page - 1) * 20 + 1 }}–{{ (page - 1) * 20 + executions | length }} OF {{ total }} {% if total_pages > 1 %}
{% if page > 1 %} {% else %} {% endif %} {{ page }} {% if page < total_pages %} {% else %} {% endif %}
{% endif %}
{% endif %}