{% extends "global/Base.html" %} {% load staticfiles otree_tags %} {% block title %} Payoff for round {{ subsession.round_number }} {% endblock %} {% block content %} {% if player.role == 'Player 1' %}

You were Player 1 and chose {{player.prey_hunted}}.
Your opponent was Player 2 and chose {{opponent_round_choice}}.
Therefore, your payoff was ${{ player.roundPayoff }} and your opponent's payoff was ${{opponent_round_payoff}}.
Your cumulative payoff thus far is {{player_cumulative_payoff}}.

{% if player.roundPayoff == 4 %} {% else %} {% endif %}
{% else %}

You were Player 2 and chose {{player.prey_hunted}}.
Your opponent was Player 1 and chose {{opponent_round_choice}}.
Therefore, your payoff was ${{ player.roundPayoff }} and your opponent's payoff was ${{opponent_round_payoff}}.
Your cumulative payoff thus far is {{player_cumulative_payoff}}.

{% if player.roundPayoff == 4 %} {% else %} {% endif %}
{% endif %} {% next_button %}
{% endblock %}