{% extends "global/Page.html" %} {% load otree %} {% block title %} Results {% endblock %} {% block content %} {% if player.role == "Hunter 1" %}

{% if same_choice %} Both of you chose to hunt {{ my_decision }}. {% else %} You chose to hunt {{ my_decision }} and your partner chose to hunt {{ opponent_decision }}. {% endif %}

As a result, you earned {{ player.payoff }} and your partner earned {{player.other_player.payoff}}.

Your total payoff up to this round is {{participant.payoff}}.

{% else %}

{% if same_choice %} Both of you chose to hunt {{ my_decision }}. {% else %} You chose to hunt {{ my_decision }} and your partner chose to hunt {{ opponent_decision }}. {% endif %}

As a result, you earned {{ player.payoff }} and your partner earned {{player.other_player.payoff}}.

Your total payoff up to this round is {{participant.payoff}}.

{% endif %} {% if player.decision == 'Stag' and player.other_player.decision == 'Stag' %} Happy {% else %} Sad {% endif %}

History

{% for p in player_in_all_rounds %} {% endfor %}
Round Number Your Choice Your Partner's Choice Your Payoff Your Partner's payoff Your Total Payoff
{{ p.round_number }} {{ p.decision }} {{ p.other_player.decision }} {{ p.payoff }} {{ p.other_player.payoff }} {{ participant.payoff }}
{% next_button %} {% endblock %}