{% extends 'base.html' %} {% load i18n %} {% block page_header %}

{% trans "Execution Overview " %}

{% endblock page_header %} {% block main %} {% load i18n sizeformat %}

{% trans "Information" %}


{% trans "ID" %}
{{ execution.id|default:_("None") }}
{% trans "Worflow Name" %}
{{ execution.workflow_name }}
{% trans "State" %}
{{ execution.state }}
{% if execution.description %}
{% trans "Description" %}
{{ execution.description }}
{% endif %}
{% trans "Created At" %}
{{ execution.created_at }}
{% trans "Updated At" %}
{{ execution.updated_at }}
{% trans "Params" %}
{{ execution.params }}
{% trans "Input" %}
{{ execution.input }}
{% trans "Output" %}
{{ execution.output }}
{% endblock %}