{% extends "layout.html" %} {% block title %}History{% endblock %} {% block content %}

📜 Run History

Latest generated videos and prompts.

{% for run in runs %}
{{ run.created_at }} {{ run.status }} • {{ run.aspect }} • {{ run.image_provider }} • {{ run.scenes }} scenes / {{ run.duration }}s
{% if run.output_path %} ⬇️ Download {% endif %} {% if run.status == 'failed' %} {% endif %}
{% if run.error %}
⚠️ {{ run.error }}
{% endif %}
{{ run.prompt }}
{% else %}
No runs yet. Generate your first video! 🎬
{% endfor %}
{% endblock %}