{% load i18n %}

{% trans "Last Run" %}

{% if latest_execution %}
{% trans "Status" %}
{{ latest_execution.get_status_display }}
{% trans "Triggered" %}
{{ latest_execution.triggered_at }}
{% trans "Completed" %}
{{ latest_execution.completed_at|default:"-" }}
{{ latest_result_json }}
{% else %}

{% trans "No recorded run yet." %}

{% endif %}