{% extends "global/Base.html" %} {% load otree_tags %} {% block title %} Results {% endblock %} {% block content %}

{% if player.withdraw %} You withdrew your deposit. In this round, {{ total_runs }} out of {{ Constants.players_per_group }} ({{ run_percentage }}%) withdrew, while the threshold was {% if round_number <= 3 %} {{ Constants.threshold1 }}% {% elif round_number <= 6 %}{{ Constants.threshold2 }} % {% elif round_number <= 9 %}{{ Constants.threshold3 }} % {% elif round_number <= 12 %}{{ Constants.threshold4 }} % {% elif round_number <= 15 %}{{ Constants.threshold5 }} % {% elif round_number <= 18 %}{{ Constants.threshold6 }} % {% elif round_number <= 21 %}{{ Constants.threshold7 }} % {% elif round_number <= 24 %}{{ Constants.threshold8 }} % {% else %} {{ Constants.threshold9 }} % {% endif %}. As a result, your payoff is {{ player.payoff }}.{% elif num_runs > 0 %} You did not withdraw, but {{ total_runs }} ouf of {{ Constants.players_per_group }} ( {{ run_percentage }} %) withdrew, while the threshold was {% if round_number <= 3 %} {{ Constants.threshold1 }}% {% elif round_number <= 6 %}{{ Constants.threshold2 }} % {% elif round_number <= 9 %}{{ Constants.threshold3 }} % {% elif round_number <= 12 %}{{ Constants.threshold4 }} % {% elif round_number <= 15 %}{{ Constants.threshold5 }} % {% elif round_number <= 18 %}{{ Constants.threshold6 }} % {% elif round_number <= 21 %}{{ Constants.threshold7 }} % {% elif round_number <= 24 %}{{ Constants.threshold8 }} % {% else %} {{ Constants.threshold9 }} % {% endif %}. As a result, your payoff is {{ player.payoff }}. {% else %} You did not withdraw and no one else did either. The threshold was {% if round_number <= 3 %} {{ Constants.threshold1 }}% {% elif round_number <= 6 %}{{ Constants.threshold2 }} % {% elif round_number <= 9 %}{{ Constants.threshold3 }} % {% elif round_number <= 12 %}{{ Constants.threshold4 }} % {% elif round_number <= 15 %}{{ Constants.threshold5 }} % {% elif round_number <= 18 %}{{ Constants.threshold6 }} % {% elif round_number <= 21 %}{{ Constants.threshold7 }} % {% elif round_number <= 24 %}{{ Constants.threshold8 }} % {% else %} {{ Constants.threshold9 }} % {% endif %}. As a result, your payoff is {{ player.payoff }}. {% endif %}

{% next_button %}

{% if round_number <= 3 %}{% include 'bank_run/Instructions.html' %} {% elif round_number <= 6 %}{% include 'bank_run/Instructions2.html' %} {% elif round_number <= 9 %}{% include 'bank_run/Instructions3.html' %} {% elif round_number <= 12 %}{% include 'bank_run/Instructions4.html' %} {% elif round_number <= 15 %}{% include 'bank_run/Instructions5.html' %} {% elif round_number <= 18 %}{% include 'bank_run/Instructions6.html' %} {% elif round_number <= 21 %}{% include 'bank_run/Instructions7.html' %} {% elif round_number <= 24 %}{% include 'bank_run/Instructions8.html' %} {% else %} {% include 'bank_run/Instructions9.html' %} {% endif %} {% endblock %}