{% set current_theme = current_theme() %} {{ current_theme.headertags() }} Mensajes - {{ course.nombre }} {{ current_theme.local_style() }} {{ current_theme.navbar() }}
{{ current_theme.notify() }}

{% if current_user.tipo == "student" %} Nuevo Mensaje {% endif %}
{% if threads %}
{% for thread in threads %}
{% set first_message = thread.messages.first() %} {% if first_message %} {{ first_message.content.split('\n')[0][:100] }}... {% else %} Thread #{{ thread.id[:8] }} {% endif %}

Por: {{ thread.student.nombre }} {{ thread.student.apellido }} | {{ thread.timestamp.strftime('%d/%m/%Y %H:%M') }} | Mensajes: {{ thread.messages.count() }}

{% if thread.status == "open" %} Abierto {% elif thread.status == "fixed" %} Resuelto {% elif thread.status == "closed" %} Cerrado {% endif %}
{% endfor %}
{% else %}
No hay mensajes
{% if current_user.tipo == "student" %}

¿Tienes alguna pregunta sobre el curso?

Enviar Primer Mensaje {% else %}

No hay mensajes de estudiantes en este curso.

{% endif %}
{% endif %}