{% 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: |
?? |
Export results (csv) |
|
{% endfor %}
Rating task values:
Page ID/Question:
{% 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 %}