{% endif %}
{% if pregunta.descripcion is not empty %}
{{ pregunta.descripcion|trans({})|raw }}
{% else %}
{{ pregunta.descripcion|trans({})|raw }}
{% endif %}
{% if casoestudio is defined and casoestudio is not empty %}
{% if respuestaca[pregunta.alias] is defined and respuestaca[pregunta.alias] is not empty %}
{{ 'Caso de estudio'|trans({}) }}
{{ respuestaca[pregunta.alias]|raw }}
{% endif %}
{% else %}
{% endif %}
{% if app.user.getType == 'trainer' %}
{% if respuestas is empty %}
{{ 'Not available'|trans({}) }}
{% else %}
{% set encontrada = false %}
{% if respuesta[pregunta.alias] is defined %}
{% set encontrada=true %}
{{ respuesta[pregunta.alias] }}
{% endif %}
{% if not encontrada %}
{{ 'Not available'|trans({}) }}
{% endif %}
{% endif %}
{% if pregunta.isRevisable %}
{% endif %}
{% endif %}
{% if app.user.getType == 'green_entrepreneur' %}
{% if respuestas is empty %}
{{ 'Select any column header before clicking Add new column button'|trans({})}}
{% else %}
{% set encontrada = false %}
{% if respuesta[pregunta.alias] is defined %}
{% set encontrada=true %}
{{ 'Select any column header before clicking Add new column button'|trans({})}}
{% if pregunta.isRevisable and reviewed[pregunta.alias] and comentarios[pregunta.alias].comentario is defined and comentarios[pregunta.alias].comentario is not empty%}
{{ comentarios[pregunta.alias].comentario|raw }}
{% endif %}
{% endif %}
{% if not encontrada %}
{{ 'Select any column header before clicking Add new column button'|trans({})}}