{% extends "base.html" %} {% block title %}举报详情 - #{{ report.id }}{% endblock %} {% block content %}

举报详情 #{{ report.id }}

  • 被举报邮箱: {{ report.reported_email }}
  • 被举报用户名: {{ report.reported_username or 'N/A' }}
  • 所属站点: {{ report.reported_pt_site }}
  • 举报理由: {{ report.reason_category | translate_reason }}
  • 举报人: {{ report.reporter.username }}
  • 状态: {{ report.status | translate_status }}
  • 详细描述:
    {{ report.description }}
证据链接
{% for evidence in report.evidences %} {{ evidence.file_url }} {% else %}
未提供证据链接。
{% endfor %}
{% if current_user.role in ['admin', 'trust_user'] %}
{% if current_user.role == 'admin' %}管理员操作{% else %}信任用户操作{% endif %}
{% if current_user.role == 'admin' %} {% if report.status == 'pending' or report.status == 'in_review' %}
{% elif report.status == 'approved' %} {% else %}

该举报已处理完毕,无更多操作。

{% endif %} {% else %}

您可以在下方添加审核建议。

{% endif %}
{% endif %} {% if current_user.role in ['admin'] and related_reports %} {% endif %}
{% if current_user.role in ['admin', 'trust_user'] %}
审核与讨论
{% for comment in comments %}
{{ comment.author.username }}

{{ comment.body | safe }}

{{ (comment.created_at | to_beijing_time).strftime('%Y-%m-%d %H:%M') }}
{% else %}

暂无审核建议。

{% endfor %}
{% if report.status == 'pending' or report.status == 'in_review' %} {% else %} {% endif %}
{% endif %}
{% endblock %}