{% extends "base.html" %} {% block title %}IDC Twin Dashboard — ICDEV{% endblock %} {% block content %}

IDC Twin Dashboard

Live snapshot view — latest version per infrastructure project with per-CSP resource counts and compliance violations.

Infrastructure Projects — {{ projects | length }} total
{% if projects %}
{% for p in projects %} {% set d = p.design %} {% set snap = p.snapshot %} {% set vc = p.violation_count %}

{{ d.name }}

{{ d.classification or 'CUI' }} Updated: {{ d.updated_at[:10] if d.updated_at else '—' }}
{% if snap %}
Snapshot v{{ snap.version_number }} {% if snap.created_at %} — {{ snap.created_at[:10] }}{% endif %} {% if snap.change_summary %}
{{ snap.change_summary[:80] }}{% endif %}
{% else %}
No snapshots yet — working copy
{% endif %} {% if p.csp_counts %}
{% for csp, cnt in p.csp_counts.items() %} {% set cls = csp | lower | replace(' ', '') | replace('-', '') %} {{ csp }} {{ cnt }} {% endfor %}
{% else %}
No resources
{% endif %} {% if p.score is not none %}
Score: {{ (p.score * 100) | round(0) | int }}%
{% endif %}
{% if vc == 0 %} ✓ No violations {% elif vc <= 3 %} ⚠ {{ vc }} violation{{ 's' if vc != 1 else '' }} {% else %} ⚠ {{ vc }} violations {% endif %}
{% if p.violations %} {% endif %}
{% endfor %}
{% else %}
No infrastructure designs found. Create a design to get started.
{% endif %} {% endblock %}