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

You chose {%if my_decision == "Comply"%} {{"UP"}} {% elif my_decision == "Not_comply" %} {{"DOWN"}} {% elif my_decision == "Inspect" %} {{"LEFT"}} {% else %} {{"RIGHT"}} {%endif%} and the other player chose {%if opponent_decision == "Comply"%} {{"UP"}} {%elif opponent_decision == "Not_comply" %} {{"DOWN"}} {%elif opponent_decision == "Inspect"%}{{"LEFT"}} {%else%} {{"RIGHT"}} {%endif%}

As a result, you earned {{ player.payoff }} in round # {{player.round_number}}.

{% include Constants.instructions_template %} {% if player.round_number == 5 %}
You finished all trial rounds. The real game will start from the next round!
{%else%} {%endif%} {% next_button %} {% endblock %}