{% extends "global/Page.html" %} {% load staticfiles otree %} {% block title %} {% endblock %} {% block content %}
{% if player.status == 'dropout' %}

This is the end of the experiment

Because you have dropped out, you will not receive any payment for the experiment.

{% else %} {#

Interaction Results

#}

This is the end of the interaction

{% if player.status == 'other_dropout' %}

The interaction ends now because the other participant has dropped out from the experiment.

{% endif %}

Your cumulative payoff from the interaction is {{ player.payoff }}.

{% next_button %}
{% endif %}

{% if player.player_round != 1 %}
History
{% for p in history %} {% endfor %}
Round Your choice Other's choice Your payoff Other's payoff Your cumulative payoff Other's cumulative payoff
{{ p.round_number }} {{ p.action}} {{ p.other_action}} {{ p.payoff}} {{ p.other_payoff}} {{ p.cum_payoff}} {{ p.other_cum_payoff}}
{% endif %} {% endblock %}