{% extends "base.html" %} {% block title %}Instance {{ instance.id[:8] }}...{% endblock %} {% block head %} {% endblock %} {% block page_title %}
{{ instance.definition_name }} {{ instance.status }}
{% endblock %} {% block page_subtitle %}

Instance ID: {{ instance.id }}

{% endblock %} {% block content %}
{% if instance.status in ['running', 'waiting'] %}
{% endif %}

Instance Details

Status
{{ instance.status }}
Current Step
{% if instance.current_step %} {{ instance.current_step }} {% else %} None {% endif %}
Started At
{{ instance.started_at.strftime('%Y-%m-%d %H:%M:%S UTC') if instance.started_at else 'N/A' }}
{% if instance.completed_at %}
Completed At
{{ instance.completed_at.strftime('%Y-%m-%d %H:%M:%S UTC') }}
{% endif %} {% if instance.created_by %}
Created By
{{ instance.created_by }}
{% endif %} {% if instance.error %}
Error
{{ instance.error }}
{% endif %}

Execution Graph

Current execution state highlighted

{{ graph.mermaid_source | safe }}
Completed
Current
Failed
Pending

Step History

Execution history for each step

    {% for step in instance.step_history %}
  • {% if step.status == 'succeeded' %}
    {% elif step.status == 'failed' %}
    {% elif step.status == 'running' %}
    {% else %}
    {% endif %}

    {{ step.step_name }}

    {% if step.started_at %} Started: {{ step.started_at.strftime('%H:%M:%S') }} {% endif %} {% if step.completed_at %} | Completed: {{ step.completed_at.strftime('%H:%M:%S') }} {% endif %}

    {{ step.status }}
    {% if step.error %}
    {{ step.error }}
    {% endif %}
  • {% else %}
  • No step executions recorded yet.
  • {% endfor %}

Context Data

Workflow execution context

May contain sensitive information - do not share publicly

{{ instance.context_data | tojson(indent=2) }}
{% endblock %}