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

Welcome{% if user.get('email') %}, {{ user.email }}{% endif %}

Role: {{ user.get('role', 'user') }}

Start generating
{% if pending_videos %}

Pending Video Jobs

{% for vid in pending_videos %}
{{ vid.status | capitalize }} …

{{ vid.model_id }}
{{ vid.prompt[:80] }}{% if vid.prompt|length > 80 %}…{% endif %}

{% endfor %}
{% endif %} {% if generated_images %}

Generated images

{% for img in generated_images %} {{ img.prompt }}

{{ img.model_id }}
{{ img.prompt[:80] }}{% if img.prompt|length > 80 %}…{% endif %}

{% endfor %}
{% endif %} {% if completed_videos %}

Generated videos

{% for vid in completed_videos %} {% if vid.video_url %} {% else %}
{{ vid.status | capitalize }} …
{% endif %}

{{ vid.model_id }}
{{ vid.prompt[:80] }}{% if vid.prompt|length > 80 %}…{% endif %}
{{ vid.status }}

{% endfor %}
{% endif %} {% if images %}

Uploaded reference images

{% for img in images %} {{ img.filename }}

{{ img.filename }} — {{ (img.size_bytes / 1024) | round(1) }} KB

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