{% extends "online/base.html" %} {% block title %}Reporte {{ report.id }}{% endblock %} {% block content %}

Volver a mis reportes

EXPEDIENTE #{{ report.id }}

{{ report.subject }}

Estado
{{ report.status }}
Categoría
{{ REPORT_CATEGORIES.get(report.category, report.category) }}
Prioridad
{{ report.priority }}
Universo
{{ report.game_name or "No indicado" }}
Jugador señalado
{{ report.target_username or "Ninguno" }}
Descripción
{{ report.description }}
Evidencias
{{ report.evidence or "No se adjuntaron referencias." }}
Respuesta pública
{{ report.public_response or "El equipo todavía no ha respondido." }}

Conversación

{% for message in report_messages %}

{{ message.username or "Equipo" }}

{{ message.body }}

{{ message.created_at|date_label }}
{% else %}

No hay mensajes.

{% endfor %}
{% endblock %}