{% if thread.status == "open" %}
Abierto
{% if current_user.tipo == "student" %}
Marcar como Resuelto
{% endif %} {% if current_user.tipo in ["instructor", "moderator", "admin"] %}
Cerrar Hilo
{% endif %} {% elif thread.status == "fixed" %}
Resuelto
{% if current_user.tipo in ["instructor", "moderator", "admin"] %}
Cerrar Hilo
{% endif %} {% elif thread.status == "closed" %}
Cerrado
{% endif %}
Estudiante: {{ thread.student.nombre }} {{ thread.student.apellido }}
{{ thread.timestamp.strftime('%d/%m/%Y %H:%M') }}
{% for message in messages %}
{% if not message.is_reported and message.sender_id != current_user.usuario %}
{% endif %} {% endfor %}
{% if thread.status != "closed" and (current_user.tipo in ["instructor", "moderator", "admin"] or
current_user.usuario == thread.student_id) %}
Responder
Este hilo ha sido cerrado y no se pueden agregar más respuestas.
{% endif %}
Información del Hilo
Curso:
{{ thread.course.nombre }}
Estado:
{% if thread.status == "open" %}
Abierto
{% elif thread.status == "fixed" %}
Resuelto
{% elif thread.status == "closed" %}
Cerrado
{% endif %}
Creado:
{{ thread.timestamp.strftime('%d/%m/%Y %H:%M') }}
Cerrado:
{{ thread.closed_at.strftime('%d/%m/%Y %H:%M') }}
Mensajes:
{{ messages|length }}