{% for question in data['questions'] %} {% if ((question.type == 'upload' or question.type == 'extended_text')) %}
{{ question.title|raw }}
{{ (question.type == 'upload') ? translate('_LOADED_FILE', 'standard') : translate('_VIEW_OPEN_QUEST', 'stats') }}

{% else %}
{{ question.title|raw }}
{% for answer in question.answers %} {% endfor %}
{{ translate('_PERCENTAGE', 'standard') }}
{{ answer.title|raw }}
{{ answer.percent }}%
 

{% endif %} {% endfor %}