{% extends "base.html" %} {% block body %}

Raw-посты

Исходный пост, этап обработки и AI-оценка.
Всего: {{ pagination.total }}
{% for p in posts %} {% endfor %}
# Источник Этап Пост AI
{{ p.id }} {{ p.source_name }}
{{ p.source_platform }} · #{{ p.source_tag or "—" }}
{% if p.posted_at_fmt %}
{{ p.posted_at_fmt }}
{% endif %}
{{ p.stage.label }} {% if p.error_reason %}
{{ p.error_reason }}
{% endif %}
{% for m in p.media_items %} {% if m.type == "photo" and m.url %} {% elif m.url %} {% endif %} {% endfor %}
{% if p.media_count %}
{{ p.media_count }} медиа
{% endif %} {% if p.raw_text|length > 520 %}
{{ p.raw_text[:520] }}...
{{ p.raw_text }}
{% else %}
{{ p.raw_text }}
{% endif %}
{{ p.ai_badge.label }} итог: {{ p.ai_badge.sublabel }} {% if p.qualification_model_decision %}
модель: {{ p.qualification_model_decision }}
{% endif %} {% if p.rewrite_category %}
{{ p.rewrite_category }}
{% endif %}
{% endblock %}