{% 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:
Question ID:
| Question: |
Left scale |
Right scale |
{% for q in question_headers %}
{{ q.idquestion }} |
{{ q.question }} |
{{ q.left }} |
{{ q.right }} |
{% endfor %}
Rating task stimulus headers:
Stimulus ID:
| Stimulus: |
{% for s in stimulus_headers %}
{{ s.idpage }} |
{% if s.type == 'text' %}
{{ s.text }} |
{% else %}
{{ s.media }} |
{% endif %}
{% endfor %}
Rating task values: (Stimulus ID/Question ID)
Participant ID: |
{% for page in pages_and_questions %}
{% for p in pages_and_questions[page] %}
{{ p[0]}}/{{ p[1]}} |
{% endfor %}
{% endfor %}
{% for participant in participants_and_answers %}
{{ participant }} |
{% for answer in participants_and_answers[participant] %}
{{ answer[3] }} |
{% endfor %}
{% endfor %}
Background question answers:
Question: |
{% for bg in bg_questions %}
{{ bg.background_question }} |
{% endfor %}
{% for p in bg_answers_for_participants %}
{{ p }} |
{% for bg_answer in bg_answers_for_participants[p] %}
{{ bg_answer }} |
{% endfor %}
{% endfor %}
{% endblock %}