diff --git a/mistraldashboard/executions/templates/executions/detail.html b/mistraldashboard/executions/templates/executions/detail.html
index be9db09..b258b9a 100644
--- a/mistraldashboard/executions/templates/executions/detail.html
+++ b/mistraldashboard/executions/templates/executions/detail.html
@@ -1,28 +1,32 @@
{% extends 'base.html' %}
{% load i18n %}
-{% block title %}{% trans "Execution Overview" %}{% endblock %}
+{% block title %}{% trans "Execution Details" %}{% endblock %}
{% block page_header %}
- {% trans "Execution Overview: " %}
- {{ execution.id|default:_("None") }}
+ {% trans "Execution Details" %}
{% endblock page_header %}
{% block main %}
{% load i18n sizeformat %}
+
-
{% trans "Information" %}
+
{% trans "Overview" %}
- {% trans "ID" %}
- {{ execution.id|default:_("None") }}
- - {% trans "State" %}
- - {{ execution.state }}
{% if execution.description %}
- {% trans "Description" %}
- {{ execution.description }}
{% endif %}
+ - {% trans "State" %}
+ - {{ execution.state }}
+ {% if execution.state_info %}
+ - {% trans "State Info" %}
+ - {{ execution.state_info }}
+ {% endif %}
- {% trans "Worflow Name" %}
-
- - {% trans "Updated At" %}
- - {{ execution.updated_at }}
+
+ - {% trans "Creation Date" %}
+ - {{ execution.created_at|parse_isotime}}
+ - {% trans "Time Since Created" %}
+ - {{ execution.created_at|parse_isotime|timesince }}
+
+ - {% trans "Update Date" %}
+ - {{ execution.updated_at|parse_isotime}}
+ - {% trans "Time Since Updated" %}
+ - {{ execution.updated_at|parse_isotime|timesince }}
+
+
+
+
+
+
- {% trans "Params" %}
- {{ execution.params }}
- {% trans "Input" %}
@@ -40,4 +58,5 @@
- {{ execution.output }}
-{% endblock %}
+
+{% endblock %}
\ No newline at end of file