{% 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 %} {% set break = false %} {% for seccion in tarea[0].SeccionesTareaId if not break %} {# {% if (preguntas|length) == preguntasIndex %}#} {# {% break %}#} {# {% endif %}#} {% if (preguntasIndex - lastcambio)== seccion.numeroPreguntas %} {% set cambioSeccion=true %} {% endif %} {% set pregunta= preguntas[preguntasIndex-1] %} {% if (preguntasIndex==1) or (cambioSeccion) %} {% set lastcambio=preguntasIndex %}

{% endif %}
{% if (preguntasIndex==1) or (cambioSeccion) %}
{{ seccion.nombre }}
{% endif %} {% for preguntaIndex2 in 1..seccion.numeroPreguntas %} {% 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 %} {% if preguntasIndex < preguntas|length %} {% set preguntasIndex= preguntasIndex+1%} {% set pregunta= preguntas[preguntasIndex-1] %} {% else %} {% set break = true %} {% endif %} {% endfor %}
{% if (preguntasIndex - lastcambio)== seccion.numeroPreguntas %}
{% endif %} {% endfor %}
{% endblock container %}