{% extends "base.html" %} {% block title %}Workflows — ICDEV™{% endblock %} {% block content %} {% from "includes/classification_macros.html" import design_classification_banner %} {{ design_classification_banner('CUI') }}
{% if workflows %}
{% for wf in workflows %}

{{ wf.name }}

{% if wf.description %}

{{ wf.description }}

{% endif %}
{{ wf.category or 'custom' }} · v{{ wf.version }} · {{ wf.updated_at[:10] if wf.updated_at else '' }}
View Edit
{% endfor %}
{% else %}
⚙️
No workflows yet
Create your first workflow
{% endif %}
{% endblock %}