{% extends "base.html" %} {% set active_nav = 'home' %} {% block title %}Dashboard - TheRoad Scene Lab{% endblock %} {% block topbar_left %}

Dashboard

{% endblock %} {% block content %}
{{ runs|length }}
Total Runs
{{ runs|selectattr('status', 'equalto', 'completed')|list|length }}
Completed
{{ runs|selectattr('status', 'equalto', 'running')|list|length }}
Running
{{ screenplays|length }}
Screenplays

New Run

Pipeline

Upload Screenplay

PDF
Drop PDF here or click to browse

Uploaded files go to screenplay/uploads/

Run History

Auto-discovers existing prototype/* outputs
{% if runs %}
{% for run in runs %} {% endfor %}
ID Status Source Episodes Sections/EP Prompt Created
#{{ run.id }} {{ run.status }} {{ run.source_file | replace('screenplay/', '') }} {{ run.web_episode_count }} {{ run.sections_per_episode }} {{ run.prompt_version or '-' }} {{ run.created_at[:16] }} View
{% else %}

No runs yet. Start a new generation above.

{% endif %}
{% endblock %}