COMMAND DECK {{ project.title | upper }}

{{ project.title }}

{% if project.description %}

{{ project.description }}

{% endif %}
ADD BLOCK
{% for block in blocks %}
// {{ block.type }}
{% if block.type == 'note' %}
{{ block.content }}
{% elif block.type == 'checklist' %}
    {% for item in block.items %}
  • {% endfor %}
{% endif %}
{% endfor %}
// Tasks
{% if project_tasks %}
    {% for task in project_tasks %}
  • {{ task.title }}
  • {% endfor %}
{% else %}
No tasks for this project.
{% endif %}
// Files
Drop files here or click ATTACH FILE
{% if files %}
{% for file in files %} {% set ext = file.filename.rsplit('.', 1)[-1].lower() if '.' in file.filename else '' %}
{% if ext in ['jpg', 'jpeg', 'png', 'gif', 'webp'] %} {{ file.filename }} {% else %} {{ ext | upper }} {% endif %}
{{ file.filename }}
{% endfor %}
{% else %}
No files attached.
{% endif %}
Huyang  ·  {{ project.title }}
{% if chat_history %} {% for msg in chat_history %}
{{ msg.content }}
{{ 'you' if msg.role == 'user' else 'Huyang' }}
{% endfor %} {% else %}

Huyang has read the project.
Ask him anything about it.

{% endif %}
// Below Deck OPEN FULL
Tasks load on bridge.
// Edit Project
// Scratch