{% extends "base.html" %} {% set current_step = 4 %} {% block title %}{{ plan.name }} - Generated Project{% endblock %} {% block content %}
{{ fw_label }} {{ plan.get('artifact_mode', 'code_and_yaml') | replace('_', ' ') | title }} {{ files | length }} files

{{ plan.name }}

{{ plan.description[:150] }}

{% if validation %}
{% if not validation_errors %}
All {{ validation_ok }} validation checks passed
{% else %} {% for v in validation_errors %}
{{ v.file }}: {{ v.message }}
{% endfor %} {% endif %}
{% endif %}

Project Files

{% for item in file_tree %} {% if item.type == 'dir' %}
{{ item.name }}
{% else %} {% endif %} {% endfor %}
Select a file

Click a file in the tree to view its code

Sandbox Verification

Optional

Iterate on Your Project

{% endblock %} {% block scripts %} {% endblock %}