{% extends "base.html" %} {% block title %}Generate — AI Allucanget{% endblock %} {% block content %}

Generate

{% if error %}
{{ error }}
{% endif %} {% if result %}
{% if result.get('content') %}

Result

{{ result.content }}
{% elif result.get('images') %}

Generated image{{ 's' if result.images|length > 1 }}

{% for img in result.images %} Generated image {% endfor %} {% elif result.get('status') %}

Video job

Status: {{ result.status }}

{% if result.get('video_url') %} {% endif %} {% endif %}
{% endif %}
{% endblock %}