{% extends "base.html" %} {% block title %}Workflow & Forms — ICDEV™{% endblock %} {% block content %} {% from "includes/classification_macros.html" import design_classification_banner %} {{ design_classification_banner('CUI') }}
{% set stat_items = [ ('Forms', stats.total_forms, '#3b82f6'), ('Published', stats.published_forms, '#10b981'), ('Workflows', stats.total_workflows, '#8b5cf6'), ('Submissions Today', stats.submissions_today, '#f59e0b'), ('Templates', stats.templates_available, '#6366f1'), ] %} {% for label, value, color in stat_items %}
{{ value }}
{{ label }}
{% endfor %}

Recent Forms

View all →
{% if forms %}
{% for form in forms %}
{{ form.name }}
{{ form.status }}  v{{ form.version }}
{% endfor %}
{% else %}
No forms yet. Create your first form →
{% endif %}

Recent Workflows

View all →
{% if workflows %}
{% for wf in workflows %}
{{ wf.name }}
{{ wf.category or 'custom' }} · v{{ wf.version }}
{% endfor %}
{% else %}
No workflows yet. Create your first workflow →
{% endif %}
{% if "includes/iqe_query_widget.html" is defined %} {% include "includes/iqe_query_widget.html" %} {% endif %}
{% endblock %}