#{{ p.id }} {% if p.editorial_status == 'accepted' or p.editorial_status == 'published' %}
Принят
{% elif p.editorial_status == 'rejected' or p.editorial_status == 'publish_failed' %}
Отклонен
{% elif p.editorial_status == 'regenerating' %}
В работе
{% else %}
Ожидает
{% endif %}
{{ p.source_name }}
{{ p.posted_at_fmt or p.created_at_fmt }}
AI Оценка: {{ p.qualification_score or "?" }}/10
{% if p.publication_platforms %}
Куда публикуем:
{% for pub in p.publication_platforms %} {% if pub.url %} {{ pub.label }} {% elif pub.status == 'published' %} {{ pub.label }} {% else %} {{ pub.label }} {% endif %} {% endfor %}
{% endif %}
{% if p.media_items %} {% set photo_urls = [] %} {% for m in p.media_items %} {% if m.type == 'photo' and m.url %} {% set _ = photo_urls.append(m.url) %} {% endif %} {% endfor %}
{% for m in p.media_items %} {% if m.type == "photo" and m.url %} {% set photo_idx = photo_urls.index(m.url) %}
{% elif m.url %} {% endif %} {% endfor %}
{% endif %}
ПОСМОТРЕТЬ ИСХОДНИК И AI-ПРЕДЛОЖЕНИЕ
Оригинальный текст
{{ p.raw_text }}
AI-Предложение
{{ p.rewritten_text }}
AI Заметки / Резолюция
{{ p.rewrite_notes or p.qualification_reason or "—" }}
{% if p.editorial_status != 'published' %}
{% if p.editorial_status == 'rejected' %}
{% else %}
{% endif %}
{% endif %}