{% extends "base.html" %} {% block title %}Video Generation — All You Can GET AI{% endblock %} {% block content %}

Video Generation

{% if error %}
{{ error }}
{% endif %} {% if result %}

Video job

Job ID: {{ result.id }}

{% if result.status in ('queued', 'processing') and result.polling_url %}

Status: {{ result.status }} — checking for updates every 5 s…

{% elif result.video_url %} {% elif result.status == 'failed' %}
Generation failed: {{ result.error or 'Unknown error' }}
{% else %}

Status: {{ result.status }}

{% endif %}
{% endif %}
{% endblock %}