{% extends "base.html" %} {% block title %}{{ workflow.name }} — ICDEV™{% endblock %} {% block content %} {% from "includes/classification_macros.html" import design_classification_banner %} {{ design_classification_banner('CUI') }}
Workflow & Forms / Workflows / {{ workflow.name }}

{{ workflow.name }}

{% if workflow.description %}

{{ workflow.description }}

{% endif %}
{{ workflow.category or 'custom' }} · v{{ workflow.version }}
✏️ Edit

Execution History ({{ runs|length }})

{% if runs %}
{% for run in runs %} {% endfor %}
Run ID Status Started Triggered By
{{ run.run_id }} {{ run.status }} {{ run.started_at[:19] if run.started_at else '—' }} {{ run.triggered_by or '—' }}
{% else %}
No executions yet.
{% endif %}
{% endblock %}