{% extends "base.html" %} {% block title %}Quality Design Canvas - ICDEV Dashboard{% endblock %} {% block content %}
CUI // SP-CTI — Quality Design Canvas

Quality Design Canvas

Visual design tool for NIST SA-11 compliant software quality architecture.

{{ stats.total_designs if stats else 0 }}
Total Designs
{{ '%.1f'|format(stats.avg_uqs) if stats and stats.avg_uqs else '—' }}
Average UQS
{{ stats.total_templates if stats else 5 }}
Templates
{{ stats.total_runbooks if stats else 0 }}
Runbooks
+ New Design Browse Templates Assessment History Runbooks SOPs

Designs

{% if designs %} {% for d in designs %} {% endfor %} {% else %} {% endif %}
Name Classification UQS Score Last Updated Actions
{{ d.name }} {{ d.classification or 'CUI' }} {% set uqs = d.get('uqs_score', None) if d.get is defined else None %} {% if uqs is not none and uqs %} {{ '%.1f'|format(uqs) }} {% else %} {% endif %} {{ d.updated_at or d.created_at }} Open
No designs yet. Create one or start from a template.

Quick Start Templates

{% for t in templates[:5] if templates %}

{{ t.name }}

{{ t.description }}

{% if t.compliance_target %} {{ t.compliance_target }} {% endif %}
Use
{% else %}

Microservice API

REST API with auth, logging, STIG hardening

FedRAMP Moderate
Use

Data Pipeline

ETL pipeline with CUI marking, audit trail

NIST 800-53
Use

Web Application

Full-stack web app with SSR, RBAC, STIG

FedRAMP High
Use

Embedded IoT

Firmware with OTA, crash recovery, TinyML

CMMC L2
Use

AI/ML Service

Model serving with ATLAS, AI BOM, fairness

NIST AI RMF
Use
{% endfor %}
{% endblock %}