{% extends 'base.html' %} {% block title %}Автоматично Генерирани Доклади - OSINT{% endblock %} {% block content %}

Автоматично Генерирани Доклади от OSINT

{{ pending_count }}

Чакащи Преглед

{{ approved_count }}

Одобрени

{{ published_count }}

Публикувани

{{ rejected_count }}

Отхвърлени

{% if auto_reports %}
{% for auto_report in auto_reports %}

{{ auto_report.title }}

{{ auto_report.get_status_display }} Увереност: {{ auto_report.confidence_score }}%
🔗 {{ auto_report.source_url|truncatechars:60 }} 📅 Създадено: {{ auto_report.created_at|date:"d F Y, H:i" }} {% if auto_report.reviewed_by %} 👤 Прегледано от: {{ auto_report.reviewed_by.username }} {% endif %}
{{ auto_report.description|truncatewords:50 }}
{% if auto_report.matched_keywords.all %}
Намерени Ключови Думи: {% for keyword in auto_report.matched_keywords.all %} {{ keyword.name }} {% endfor %}
{% endif %}
Преглед {% if auto_report.status == 'pending' %} Одобри Отхвърли {% endif %} {% if auto_report.report %} Виж Доклад {% endif %}
{% endfor %}
{% if page_obj.has_other_pages %} {% endif %} {% else %}

Няма автоматично генерирани доклади.

{% endif %}
{% endblock %}