{% extends "base.html" %} {% block body %}
← Raw-посты

Raw #{{ post.id }}

{{ post.source_name }} · {{ post.source_platform }} · #{{ post.source_tag or "—" }} {% if post.posted_at_fmt %}· пост VK: {{ post.posted_at_fmt }}{% endif %}
{{ post.stage.label }}
{% for m in post.media_items %} {% if m.type == "photo" and m.url %} {% elif m.url %} {% endif %} {% endfor %}
{% if post.media_count %}
{{ post.media_count }} медиа
{% endif %}
{{ post.raw_text }}

Рерайт

Готовый текст для будущей редакторской проверки.
{{ post.rewrite_status or "pending" }}
{% if post.rewritten_text %}
{{ post.rewritten_text }}
{% else %}
Рерайт ещё не готов.
{% endif %}
Категория
{{ post.rewrite_category or "—" }}
Хэштеги
{% if post.rewrite_category_tag or post.rewrite_source_tag %} #{{ post.rewrite_category_tag or "—" }} #{{ post.rewrite_source_tag or "—" }} {% else %} — {% endif %}
Заметка
{{ post.rewrite_notes or "—" }}
Модель
{{ post.rewrite_model or post.writer_batch_model or "—" }}
Готов
{{ post.rewritten_at_fmt or "—" }}
Batch
{% if post.rewrite_batch_id %}#{{ post.rewrite_batch_id }}{% else %}—{% endif %}
Токены
{{ post.writer_total_tokens or "—" }}
Стоимость
{% if post.writer_estimated_cost_usd %}${{ post.writer_estimated_cost_usd }}{% else %}—{% endif %}
{% if post.qualification_batch_id %}
Технический ответ AI
Provider
{{ post.qualification_provider or "—" }}
Batch status
{{ post.batch_status or "—" }}
Создан
{{ post.batch_created_at_fmt or "—" }}
Завершён
{{ post.batch_completed_at_fmt or "—" }}
Постов в batch
{{ post.batch_posts_count or "—" }}
Accepted / rejected / maybe
{{ post.batch_accepted_count or 0 }} / {{ post.batch_rejected_count or 0 }} / {{ post.batch_maybe_count or 0 }}
Токены
{{ post.batch_prompt_tokens or 0 }} / {{ post.batch_completion_tokens or 0 }} / {{ post.batch_total_tokens or 0 }}
Стоимость
{% if post.batch_estimated_cost_usd %}${{ post.batch_estimated_cost_usd }}{% else %}—{% endif %}
Ошибка
{{ post.batch_error or "—" }}
{% if post.batch_prompt_text %}
Использованный prompt квалификатора
{{ post.batch_prompt_text }}
{% endif %}
{{ post.batch_response_pretty or "{}" }}
{% endif %} {% if post.rewrite_batch_id %}
Технический ответ AI-райтера
Provider
{{ post.rewrite_provider or "—" }}
Batch status
{{ post.writer_batch_status or "—" }}
Создан
{{ post.writer_batch_created_at_fmt or "—" }}
Завершён
{{ post.writer_batch_completed_at_fmt or "—" }}
Постов в batch
{{ post.writer_batch_posts_count or "—" }}
Ready / failed
{{ post.writer_batch_ready_count or 0 }} / {{ post.writer_batch_failed_count or 0 }}
Токены
{{ post.writer_prompt_tokens or 0 }} / {{ post.writer_completion_tokens or 0 }} / {{ post.writer_total_tokens or 0 }}
Стоимость
{% if post.writer_estimated_cost_usd %}${{ post.writer_estimated_cost_usd }}{% else %}—{% endif %}
Ошибка
{{ post.writer_batch_error or "—" }}
{% if post.writer_batch_prompt_text %}
Использованный prompt райтера
{{ post.writer_batch_prompt_text }}
{% endif %}
{{ post.writer_batch_response_pretty or "{}" }}
{% endif %} {% endblock %}