{% extends "base.html" %} {% block title %}{{ project.title }} — EVOLUM{% endblock %} {% block extra_head %} {% endblock %} {% block content %} {% include "_user_topbar.html" %}
← Workspace / {{ project.title }}
{{ project.title }}
{{ project.project_type|capitalize }} {{ project.status|capitalize }} {% if project.has_script %}Script ✓{% endif %} {% if project.has_deck %}Deck ✓{% endif %} {% if project.has_sizzle %}Sizzle ✓{% endif %} {% if project.has_analysis %}Analysis ✓{% endif %}
Step 01
Idea
{% if project.idea_text %}Captured ✓{% else %}Start the story{% endif %}
Step 02
Script
{% if project.has_script %}Drafted ✓{% else %}Write the screenplay{% endif %}
Step 03
Pitch Deck
{% if project.has_deck %}Built ✓{% else %}Generate the deck{% endif %}
Step 04
Sizzle Reel
{% if project.has_sizzle %}Cut ✓{% else %}Cut the reel{% endif %}
Project assets
{% if assets %} {% for a in assets %}
{{ a.asset_kind }}
{{ a.asset_name }}
{% if a.size_bytes %}{{ (a.size_bytes / 1024)|round(1) }} KB · {% endif %}{{ a.created_at }}
{% endfor %} {% else %}
Nothing on the shelf yet. As you work through the pipeline, every finished piece lands right here — ready to grab.
{% endif %}
{% endblock %}