{% set current_theme = current_theme() %} {% set config = config() %} {{ current_theme.headertags() }} Mensaje del Foro - {{ curso.nombre | title }} {{ current_theme.local_style() }} {{ current_theme.navbar() }}
{{ current_theme.notify() }}

{% if puede_responder %} Responder {% endif %} {% if puede_cerrar %} {% if mensaje.estado == "abierto" %}
{% else %} {% if curso.estado != "finalizado" %}
{% endif %} {% endif %} {% endif %}
{{ mensaje.usuario.nombre }} {{ mensaje.usuario.apellido }}
{{ mensaje.fecha_creacion.strftime('%d/%m/%Y a las %H:%M') }}
{% if mensaje.estado == "abierto" %} Abierto {% else %} Cerrado {% endif %}
{{ mensaje.contenido_html | safe }}
{% if mensaje.fecha_modificacion %} Modificado: {{ mensaje.fecha_modificacion.strftime('%d/%m/%Y %H:%M') }} {% endif %}
{% if respuestas %}
Respuestas ({{ respuestas|length }})
{% for respuesta in respuestas %}
{{ respuesta.usuario.nombre }} {{ respuesta.usuario.apellido }}
{{ respuesta.fecha_creacion.strftime('%d/%m/%Y a las %H:%M') }}
{{ respuesta.contenido_html | safe }}
{% if respuesta.fecha_modificacion %} Modificado: {{ respuesta.fecha_modificacion.strftime('%d/%m/%Y %H:%M') }} {% endif %}
{% endfor %} {% else %}

Este mensaje aún no tiene respuestas.

{% endif %} {% if puede_responder %} {% elif not curso.foro_habilitado %}
El foro está deshabilitado para este curso.
{% elif curso.estado == "finalizado" %}
Este curso ha finalizado y no se permiten nuevas respuestas.
{% elif mensaje.estado == "cerrado" %}
Este hilo está cerrado y no se permiten nuevas respuestas.
{% endif %}