{% extends 'base.html.twig' %} {% block stylesheets %} {% endblock %} {% block javascripts %} {% endblock %} {% block container %}

Cuestionario de {{ tarea[0].nombre }}

{% set preguntasIndex=1%} {% set cambioSeccion=false %} {% set lastcambio=1 %} {% for seccion in tarea[0].SeccionesTareaId %} {% if (preguntasIndex - lastcambio)== seccion.numeroPreguntas %} {% set cambioSeccion=true %} {% endif %} {% set pregunta= preguntas[preguntasIndex-1] %} {% if (preguntasIndex==1) or (cambioSeccion) %} {% set lastcambio=preguntasIndex %}

{% endif %}
{{ seccion.nombre }}
{% if pregunta.TipoPreguntaId.nombre=="string" %}
{% if respuestas is empty %} {% else %} {% for respuesta in respuestas %} {% if respuesta.preguntas.id == pregunta.id %} {% endif %} {% endfor %} {% endif %}
{% elseif pregunta.TipoPreguntaId.nombre== "text" %}
{% if respuestas is empty %} {% else %} {% for respuesta in respuestas %} {% if respuesta.preguntas.id == pregunta.id %} {% endif %} {% endfor %} {% endif %}
{% elseif pregunta.TipoPreguntaId.nombre== "select" %}
{{ pregunta.nombre }}
{% else %}
{% endif %}
{% set preguntasIndex= preguntasIndex+1%} {% if (preguntasIndex - lastcambio)== seccion.numeroPreguntas %}
{% endif %} {% endfor %}
{% endblock container %}