{% extends "base.html" %} {% block content %}


Experiment info:


{% for exp in experiment_info %}
Name: {{ exp.name }}
ID: {{ exp.idexperiment }}
Language: {{ exp.language }}
Status: {{ exp.status }}
Instructions: {{ exp.instruction }}
Number of started ratings: {{ started_ratings }}
Number of finished ratings: {{ finished_ratings }}
{% endfor %}


Slider question headers:


{% for q in question_headers %} {% endfor %}
Question ID: Question: Left scale Right scale
{{ q.idquestion }} {{ q.question }} {{ q.left }} {{ q.right }}


Slider question answers: (Page ID/Question ID)


{% for page in pages_and_questions %} {% for p in pages_and_questions[page] %} {% endfor %} {% endfor %} {% for participant in participants_and_answers %} {% if participant == 'mean' %} {% else %} {% endif %} {% for answer in participants_and_answers[participant] %} {% endfor %} {% endfor %}
Participant ID:{{ p[0]}}/{{ p[1]}}
{{ participant }}{{ participant }}{{ answer }}


Embody pictures and answers:


{% for s in stimulus_headers %} {% for embody_picture in embody_questions %} {% if s.type == 'text' %} {% elif s.type == 'picture' %} {% elif s.type == 'video' %} {% elif s.type == 'audio' %} {% else %} {% endif %} {% endfor %} {% endfor %}
Stimulus: Picture: Description:
{{ s.text }}
{{ s.text }} {{ embody_picture.question }}


Background question answers:


{% for bg in bg_questions %} {% endfor %} {% for p in bg_answers_for_participants %} {% for bg_answer in bg_answers_for_participants[p] %} {% endfor %} {% endfor %}
Participant{{ bg.background_question }}
{{ p }}{{ bg_answer }}
{% endblock %}