{% extends "base.html" %} {% block title %}{{ workflow.name }}{% endblock %} {% block head %} {% endblock %} {% block page_title %}{{ workflow.name }}{% endblock %} {% block page_subtitle %}

{{ workflow.description or 'No description' }}

{% endblock %} {% block content %}

Workflow Details

Configuration and metadata

Version
{{ workflow.version }}
Initial Step
{{ workflow.initial_step }}
Terminal Steps
{% for step in workflow.terminal_steps %} {{ step }} {% endfor %}
Steps
{% for step in workflow.steps %} {{ step }} {% endfor %}

Workflow Graph

Visual representation of the workflow flow

{{ graph.mermaid_source | safe }}

Transitions

Step transitions and conditions

{% for edge in workflow.edges %} {% else %} {% endfor %}
From To Condition
{{ edge.source }} {{ edge.target }} {% if edge.condition %} {{ edge.condition }} {% else %} Always {% endif %}
No transitions defined (single-step workflow)
{% endblock %}