{% extends 'base.html' %} {% load static %} {% block title %}{{ report.title }} - Портал за Докладване на Измами{% endblock %} {% block schema_type %}Article{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

{{ report.title }}

{{ report.get_scam_type_display }} {% if report.status == 'verified' %} Потвърдено {% elif report.status == 'rejected' %} Отхвърлено {% elif report.status == 'pending' %} Чака Преглед {% elif report.status == 'under_review' %} В Преглед {% endif %} {% if report.verification_score %} Проверка: {{ report.verification_score }}% {% endif %}
{% if report.status == 'rejected' and user.is_authenticated and report.reporter == user and rejection_action and rejection_action.reason %}
Докладът е отхвърлен

Причина за отхвърляне:

{{ rejection_action.reason }}

Отхвърлен на: {{ rejection_action.created_at|date:"d.m.Y в H:i" }}
От: {{ rejection_action.moderator.username|default:"модератор" }}

Редактиране и Повторно Изпращане
{% endif %}
Статус: {{ report.get_status_display }}
Докладвано на: {{ report.created_at|date:"d F Y, H:i" }}
Докладвано от: {{ report.get_reporter_display }}
{% if report.verified_at %}
Потвърдено на: {{ report.verified_at|date:"d F Y, H:i" }}
{% endif %}

Описание

{{ report.description|linebreaks }}

Докладвани Обекти

    {% if report.reported_url %}
  • URL: {{ report.reported_url }}
  • {% endif %} {% if report.reported_email %}
  • Имейл: {{ report.reported_email }}
  • {% endif %} {% if report.reported_phone %}
  • Телефон: {{ report.reported_phone }}
  • {% endif %} {% if report.reported_company %}
  • Фирма: {{ report.reported_company }}
  • {% endif %}
{% if report.tags.all %}

Етикети

{% for tag in report.tags.all %} {{ tag.name }} {% endfor %}
{% endif %} {% if report.verifications.all %}

Детайли за Проверка

{% for verification in report.verifications.all %}
{{ verification.get_verification_method_display }}: Увереност: {{ verification.confidence_score }}% {% if verification.notes %}

{{ verification.notes }}

{% endif %}
{% endfor %}
{% endif %} {% if user.is_authenticated and report.reporter == user %}
{% if report.status == 'pending' %} Редактиране Изтриване {% elif report.status == 'rejected' %} Редактиране и Повторно Изпращане Изтриване {% endif %}
{% endif %} {% if report.status == 'verified' and report.is_public %}

⚠️ Смятате ли, че този доклад е несправедлив?

Ако сте обект на този доклад и смятате, че информацията е невярна или несправедлива, можете да подадете заявка за премахване.

📝 Заявка за Премахване на Доклад
{% endif %}
{% endblock %}