{% 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 }}
Export results (csv)
{% endfor %}


Rating task question headers:


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


Rating task stimulus headers:


{% for s in stimulus_headers %} {% if s.type == 'text' %} {% else %} {% endif %} {% endfor %}
Stimulus ID: Stimulus:
{{ s.idpage }}{{ s.text }}{{ s.media }}


Rating task values: (Stimulus ID/Question ID)


{% for page in pages_and_questions %} {% for p in pages_and_questions[page] %} {% endfor %} {% endfor %} {% for participant in participants_and_answers %} {% for answer in participants_and_answers[participant] %} {% endfor %} {% endfor %}
Participant ID:{{ p[0]}}/{{ p[1]}}
{{ participant }}{{ answer[3] }}


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 %}
Question:{{ bg.background_question }}
{{ p }}{{ bg_answer }}
{% endblock %}