{% extends "global/Page.html" %} {% load staticfiles otree %} {% block title %} Results {% endblock %} {% block content %}

{% if player.role == 'Hunter_1' %}
Your results Your results {% if player.decision == 'stag' and player.other_player.decision == 'stag' %} Smiley Emoji {% else %} Sad Emoji {% endif %}
Choice {{player.decision}} {{player.other_player.decision}}
Payoffs: {{player.payoff}} {{player.other_player.payoff}}
Your total payoff: {{participant.payoff}}
{% else %}
Your results Your results {% if player.decision == 'stag' and player.other_player.decision == 'stag' %} Smiley Emoji {% else %} Sad Emoji {% endif %}
Choice {{player.decision}} {{player.other_player.decision}}
Payoffs: {{player.payoff}} {{player.other_player.payoff}}
Your total payoff: {{participant.payoff}}
{% endif %}

{% next_button %} {% include Constants.instructions_template %} {% endblock %}