{% extends "global/Page.html" %} {% load otree static %} {% block title %} Comprehension Questions {% endblock %} {% block content %}

Please answer the following comprehension questions.

Consider the following slider choice.

{% if player.reciprocity == "Positive" and player.colors_reversed == 0 %} {% endif %} {% if player.reciprocity == "Positive" and player.colors_reversed == 1 %} {% endif %} {% if player.reciprocity == "Negative" and player.colors_reversed == 0 %} {% endif %} {% if player.reciprocity == "Negative" and player.colors_reversed == 1 %} {% endif %}

Question 1 {% if player.q1_error %} ❌ {% endif %} {% formfield player.q1 label="Which option has been chosen by your interaction partner?" %}

Consider the following slider choice.

{% if player.reciprocity == "Positive" and player.colors_reversed == 0 %} {% endif %} {% if player.reciprocity == "Positive" and player.colors_reversed == 1 %} {% endif %} {% if player.reciprocity == "Negative" and player.colors_reversed == 0 %} {% endif %} {% if player.reciprocity == "Negative" and player.colors_reversed == 1 %} {% endif %}

Question 2 {% if player.q2_error %} ❌ {% endif %} {% formfield player.q2 label="How many sliders do you have to complete at the end of the experiment?" %} Question 3 {% if player.q3_error %} ❌ {% endif %} {% formfield player.q3 label="How many sliders does your interaction partner have to complete at the end of the experiment?" %}
{% endblock %}