{% extends "global/Base.html" %} {% load otree_tags %} {% block title %} Results {% endblock %} {% block content %}
{% if player.withdraw %} {% if round_number == 1 %} You withdrew your deposit. In this round, 1 out of {{ Constants.players_per_group }} withdrew. As a result, your payoff is 1.11.{% elif round_number == 2 %} You withdrew your deposit. In this round, 2 out of {{ Constants.players_per_group }} withdrew. As a result, your payoff is 1.11. {% elif round_number == 3 %} You withdrew your deposit. In this round, 1 out of {{ Constants.players_per_group }} withdrew. As a result, your payoff is 1.11. {% elif round_number <= 5 %} You withdrew your deposit. In this round, 8 out of {{ Constants.players_per_group }} withdrew. As a result, your payoff is 1.11. {% elif round_number == 6 %} You withdrew your deposit. In this round, 9 out of {{ Constants.players_per_group }} withdrew. As a result, your payoff is 1.11.{% else %} You withdrew your deposit. In this round, {{ total_runs }} out of {{ Constants.players_per_group }} withdrew. As a result, your payoff is {{ player.payoff }}. {% endif %} {% elif num_runs > 0 %} {% if round_number == 1 %} You did not withdraw, but 1 ouf of {{ Constants.players_per_group }} withdrew. As a result, your payoff is 1.98. {% elif round_number == 2 %} You did not withdraw, but 2 ouf of {{ Constants.players_per_group }} withdrew. As a result, your payoff is 1.95. {% elif round_number == 3 %} You did not withdraw, but 1 ouf of {{ Constants.players_per_group }} withdrew. As a result, your payoff is 1.98. {% elif round_number <= 5 %} You did not withdraw, but 8 ouf of {{ Constants.players_per_group }} withdrew. As a result, your payoff is 1.12. {% elif round_number == 6 %} You did not withdraw, but 9 ouf of {{ Constants.players_per_group }} withdrew. As a result, your payoff is 0.02. {% else %} You did not withdraw, but {{ total_runs }} ouf of {{ Constants.players_per_group }} withdrew. As a result, your payoff is {{ player.payoff }}. {% endif %} {% else %}{% if round_number == 1 %} You did not withdraw, but 1 ouf of {{ Constants.players_per_group }} withdrew. As a result, your payoff is 1.98. {% elif round_number == 2 %} You did not withdraw, but 2 ouf of {{ Constants.players_per_group }} withdrew. As a result, your payoff is 1.95. {% elif round_number == 3 %} You did not withdraw, but 1 ouf of {{ Constants.players_per_group }} withdrew. As a result, your payoff is 1.98. {% elif round_number <= 5 %} You did not withdraw, but 8 ouf of {{ Constants.players_per_group }} withdrew. As a result, your payoff is 1.12. {% elif round_number == 6 %} You did not withdraw, but 9 ouf of {{ Constants.players_per_group }} withdrew. As a result, your payoff is 0.02. {% else %} You did not withdraw and no one else did either. As a result, your payoff is {{ player.payoff }}. {% endif %} {% endif %}
{% next_button %}
{% if round_number <= 9 %}{% include 'bank_run2/Instructions.html' %} {% elif round_number <= 18 %}{% include 'bank_run2/Instructions2.html' %} {% else %} {% include 'bank_run2/Instructions3.html' %} {% endif %} {% endblock %}