{% extends "base.html" %} {% block title %}申诉详情 - #{{ appeal.id }}{% endblock %} {% block content %}
申诉信息

申诉ID: #{{ appeal.id }}

申诉人: {{ appeal.appealer.username }}

状态: {{ appeal.status }}


针对黑名单记录
{% if appeal.blacklist_entry %}

站点: {{ appeal.blacklist_entry.pt_site }}

UID: {{ appeal.blacklist_entry.uid }}

{% else %}

黑名单记录已删除

{% endif %}
{% if current_user.role=='admin' and appeal.status not in ['approved', 'rejected'] %}
管理员操作
{% endif %}
对话历史
{{ appeal.appealer.username }} {{ appeal.created_at.strftime('%Y-%m-%d %H:%M') }}

[初始申诉理由]

{{ appeal.reason }}

{% for message in messages %}
{% if message.author.role == 'admin' %} {{ message.author.username }} (管理员) {{ message.created_at.strftime('%Y-%m-%d %H:%M') }} {% else %} {{ message.author.username }} {{ message.created_at.strftime('%Y-%m-%d %H:%M') }} {% endif %}

{{ message.body }}

{% endfor %}
{% if appeal.status not in ['approved', 'rejected'] %} {% else %} {% endif %}
{% endblock %}