{% extends "base.html" %} {% block title %}Generated Video{% endblock %} {% block content %}
← Back to Gallery {% if video %}

Video Generation Job

{% if video.status == 'completed' and video.video_url %} {% elif video.status in ('queued', 'processing') %}

Status: {{ video.status }}

Your video is being processed. This page will update automatically when it's ready.

{% elif video.status == 'failed' %}

Generation Failed

{{ video.error or 'An unknown error occurred.' }}

{% else %}

Video Not Available

Status: {{ video.status }}

{% endif %}

Prompt

{{ video.prompt }}

Model: {{ video.model_id }}

Job ID: {{ video.job_id }}

Created: {{ video.created_at | fromisoformat | humantime }}

Last Update: {{ video.updated_at | fromisoformat | humantime }}

{% else %}

Video job not found

Could not find details for this video job.

{% endif %}
{% endblock %}