{% 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') }} {{ mensaje.fecha_creacion.strftime('%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') }} {{ respuesta.fecha_creacion.strftime('%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 %}