{% extends "global/Page.html" %} {% load otree %} {% block styles %} {% endblock %} {% block title %} Additional Information {% endblock %} {% block content %}

In Part 1, you were presented with the following statement:

"{{ player.recorded_statement }}"

When asked whether you agree or disagree with this statement, you indicated:

{% if player.answer_used == 1 %} Agree {% endif %} {% if player.answer_used == 2 %} Disagree {% endif %}

CHOICE-other and ESTIMATE-other were presented with the exact same statement. When asked whether they agree or disagree with this statement, both CHOICE-other and ESTIMATE-other indicated:

{% if player.answer_used == 1 and player.similarity == 1 %} Agree {% endif %} {% if player.answer_used == 1 and player.similarity == 2 %} Disagree {% endif %} {% if player.answer_used == 2 and player.similarity == 1 %} Disagree {% endif %} {% if player.answer_used == 2 and player.similarity == 2 %} Agree {% endif %}

Now, consider the following pairs of circles:


Which of these pairs of circles best represents how similar you feel to CHOICE-other and ESTIMATE-other? Note that your chosen pair of circles will be displayed at the top of the computer screen during Part 2.

{% for field in form %} {% for choice in field %} {% endfor %} {% endfor %}
A. B. C. D. E. F. G.
    {{ choice.tag }}

Press "Next" to start a practice period for Part 2.


{% next_button %}
{% endblock %}