{% 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 %}Configuration and metadata
Visual representation of the workflow flow
Step transitions and conditions
| From | To | Condition |
|---|---|---|
| {{ edge.source }} | {{ edge.target }} |
{% if edge.condition %}
{{ edge.condition }}
{% else %}
Always
{% endif %}
|
| No transitions defined (single-step workflow) | ||