{% extends "global/Page.html" %} {% load otree static %} {% block content %}
Part III - Instructions
{% if player.vote == 1 and group.total_vote_a >= 2 %}You now have the opportunity to chat with the other player(s) who also voted for Plan A in your group.
{% chat %}Click the "Next" button when you are done with chatting.
{% else %} {% if player.vote == 0 and group.total_vote_a <= 1 %}You now have the opportunity to chat with the other player(s) who also voted for Plan B in your group.
{% chat %}Click the "Next" button when you are done with chatting.
{% else %}Click the "Next" button to enter the post-questionnaire.
{% endif %} {% endif %}Recall that the two plans are:
Plan A The two members who counted more table correctly get 40% and the other member gets 20% of the total points.
Plan B Each member gets one third of the total points.
{% endblock %}