{% if pregunta.preTitulo is not empty %}
{{ pregunta.preTitulo|trans({})|raw }}
{% endif %}
{{ pregunta.nombre|trans({})|raw }}
{% 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 %} {{ 'Caso de estudio'|trans({}) }}
{{ respuestaca[pregunta.alias]|raw }}
{% endif %} {% endif %} {% if respuestas is empty %} {% set options = pregunta.TipoPreguntaOptions|split(',') %} {% for option in options %} {% endfor %} {% else %} {% set encontrada = false %} {% for respuesta in respuestas %} {% if respuesta.preguntas.id == pregunta.id %} {% set encontrada=true %} {% set options = pregunta.TipoPreguntaOptions|split(',') %} {% for option in options %} {% if option == respuesta.valor %} {% endif %} {% endfor %} {% endif %} {% endfor %} {% if not encontrada %} {% set options = pregunta.TipoPreguntaOptions|split(',') %} {% for option in options %} {% endfor %} {% endif %} {% endif %}