{% extends "base.html" %} {% from "_macros_ui.html" import empty_state %} {% block title %}Content Analytics{% endblock %} {% block content %}

Content Analytics

Сообщения Каналы Тренды Контент

{{ summary.total_generations }}

Generations

{{ summary.total_published }}

Published

{{ summary.total_pending }}

Pending

{{ summary.total_rejected }}

Rejected

Pipeline Statistics
{% if pipeline_stats %}
{% for stat in pipeline_stats %} {% endfor %}
Pipeline Generated Published Rejected Pending Success Rate
{{ stat.pipeline_name }} {{ stat.total_generations }} {{ stat.total_published }} {{ stat.total_rejected }} {{ stat.pending_moderation }}
{{ "%.1f"|format(stat.success_rate) }}%
{% else %} {{ empty_state("No pipelines configured.") }} {% endif %}
Moderation Queue Pipelines
{% endblock %}