{% if attempts | length == 0 %}
No trigger attempts{% if active_status %} matching "{{ active_status }}"{% endif %}.
{% else %}
{% for attempt in attempts %} {% endfor %}
TIME STATUS SOURCE IP REASON EXECUTION
{{ attempt.attempted_at }} {{ attempt.status | upper }} {{ attempt.source_ip }} {{ attempt.reason if attempt.reason else '—' }} {% if attempt.execution_id %} {{ attempt.execution_id[:8] }} {% else %} — {% endif %}
{{ (page - 1) * 20 + 1 }}–{{ (page - 1) * 20 + attempts | length }} OF {{ total }} {% if total_pages > 1 %}
{% if page > 1 %} {% else %} {% endif %} {{ page }} {% if page < total_pages %} {% else %} {% endif %}
{% endif %}
{% endif %}