{% extends "base.html" %} {% block title %}Просмотр черновика #{{ run.id }}{% endblock %} {% block content %}

Черновик #{{ run.id }}

← Назад к очереди
{{ run.moderation_status }} Pipeline #{{ run.pipeline_id }}
{% if run.generated_text %}
Сгенерированный текст
{{ run.generated_text }}
{% else %}
Текст отсутствует
{% endif %} {% if run.image_url %}
Изображение
Generated image
{% endif %} {% if run.prompt %}
Промпт
{{ run.prompt }}
{% endif %}
Информация
ID
{{ run.id }}
Pipeline
{{ run.pipeline_id }}
Статус
{{ run.status }}
Модерация
{{ run.moderation_status }}
Создан
{{ run.created_at|local_dt }}
{% if run.published_at %}
Опубликован
{{ run.published_at|local_dt }}
{% endif %}
{% if run.moderation_status == "pending" %}
Действия
{% elif run.moderation_status == "approved" and not run.published_at %}
Публикация
{% endif %}
{% endblock %}