{% extends "base.html" %} {% block title %}Migration Design Canvas — ICDEV{% endblock %} {% block content %}

Migration Design Canvas

Visual migration planning — 7Rs strategy mapping, wave sequencing, compliance gates, and target architecture design.

+ New Migration Design
{{ designs | length }}
Designs
{{ templates | length }}
Templates
{% if templates %}
Templates — Start from a Pre-Built Design
{% for t in templates %}

{{ t.name }}

{{ t.description or '' }}

{{ t.category or 'general' }}
{% endfor %}
{% endif %}
Your Designs
{% for d in designs %}

{{ d.name }}

{{ d.description or 'No description' }}

{{ d.classification or 'CUI' }} {% if d.migration_type %}{{ d.migration_type }}{% endif %}
{% else %}

No migration designs yet. Start from a template above or click + New Migration Design.

{% endfor %}
{% if recent_assessments %}
Recent Assessments
{% for a in recent_assessments %} {% endfor %}
Design Score Grade Readiness Date
{{ a.design_name or a.design_id }} {{ a.score }} {{ a.grade }} {{ a.readiness_score }}% {{ a.created_at[:10] if a.created_at else '' }}
{% endif %} {% endblock %}