COMMAND DECK
{{ project.title | upper }}
BRIDGE
·
PROJECTS
·
BELOW DECK
·
COCKPIT
{{ project.title }}
{% if project.description %}
{{ project.description }}
{% endif %}
EDIT
DELETE
ADD BLOCK
+ NOTE
+ CHECKLIST
{% for block in blocks %}
// {{ block.type }}
REMOVE
{% if block.type == 'note' %}
{{ block.content }}
{% elif block.type == 'checklist' %}
{% for item in block.items %}
{{ item.text }}
✕
{% endfor %}
ADD
{% endif %}
{% endfor %}
// Tasks
ADD
{% if project_tasks %}
{% for task in project_tasks %}
{{ task.title }}
✎
✕
{% endfor %}
{% else %}
No tasks for this project.
{% endif %}
// Files
ATTACH FILE
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'] %}
{% else %}
{{ ext | upper }}
{% endif %}
{{ file.filename }}
✕
{% endfor %}
{% else %}
No files attached.
{% endif %}
Huyang
· {{ project.title }}
CLEAR
{% 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 %}
TX
// Below Deck
OPEN FULL
ADD
Tasks load on bridge.
// Edit Project
PRIVATE PROJECT
CANCEL
SAVE
// Scratch
—