{% load otree %} {% if round_in_session > 1 or results %}

{% if RoundSurvey or lastRound %} All choices in current session {% else %} All choices so far in current session {% endif %}

The choices that you and the bot made in all rounds so far (including the round you just played) are shown below:

C = Cooperate, D = Defect

{% for round_num in round_nums %} {% endfor %}
Round Your choice Bot's choice Your payoff Bot's payoff
{{ round_num }} {{ all_my_decisions|get_choices:round_num }} {{ all_bot_decisions|get_choices:round_num }} {{ all_my_payoffs|get_choices:round_num }} {{ all_bot_payoffs|get_choices:round_num }}

{% if RoundSurvey or lastRound %} Total payoff in current session {% else %} Total payoff so far in current session {% endif %}

The sum of your payoffs and the bot's payoffs in the rounds played so far in the current session are shown below:

{% if RoundSurvey or lastRound %} {% else %} {% endif %}
Your total payoff Bot's total payoff
Total payoffTotal payoff so far{{ my_total_payoff }} {{ bot_total_payoff }}
{% endif %}