{% extends "global/Base.html" %} {% load otree_tags %} {% block title %} Results {% endblock %} {% block content %}
{% if player.withdraw %} You withdrew your deposit. In this round, {{ run_percentage }}% withdrew, while the threshold was {% if round_number == 1 %} {{ Constants.threshold1 }}% {% elif round_number == 2 %}{{ Constants.threshold2 }} % {% elif round_number == 3 %}{{ Constants.threshold3 }} % {% elif round_number == 4 %}{{ Constants.threshold4 }} % {% elif round_number == 5 %}{{ Constants.threshold5 }} % {% elif round_number == 6 %}{{ Constants.threshold6 }} % {% elif round_number == 7 %}{{ Constants.threshold7 }} % {% elif round_number == 8 %}{{ Constants.threshold8 }} % {% else %} {{ Constants.threshold9 }} % {% endif %}. As a result, your payoff is {{ player.payoff }}.{% elif num_runs > 0 %} You did not withdraw, but {{ run_percentage }} % withdrew, while the threshold was {% if round_number == 1 %} {{ Constants.threshold1 }}% {% elif round_number == 2 %}{{ Constants.threshold2 }} % {% elif round_number == 3 %}{{ Constants.threshold3 }} % {% elif round_number == 4 %}{{ Constants.threshold4 }} % {% elif round_number == 5 %}{{ Constants.threshold5 }} % {% elif round_number == 6 %}{{ Constants.threshold6 }} % {% elif round_number == 7 %}{{ Constants.threshold7 }} % {% elif round_number == 8 %}{{ 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 == 1 %} {{ Constants.threshold1 }}% {% elif round_number == 2 %}{{ Constants.threshold2 }} % {% elif round_number == 3 %}{{ Constants.threshold3 }} % {% elif round_number == 4 %}{{ Constants.threshold4 }} % {% elif round_number == 5 %}{{ Constants.threshold5 }} % {% elif round_number == 6 %}{{ Constants.threshold6 }} % {% elif round_number == 7 %}{{ Constants.threshold7 }} % {% elif round_number == 8 %}{{ Constants.threshold8 }} % {% else %} {{ Constants.threshold9 }} % {% endif %}. As a result, your payoff is {{ player.payoff }}. {% endif %}
{% next_button %}
{% if round_number == 1 %}{% include 'bank_run_new/Instructions.html' %} {% elif round_number == 2 %}{% include 'bank_run_new/Instructions2.html' %} {% elif round_number == 3 %}{% include 'bank_run_new/Instructions3.html' %} {% elif round_number == 4 %}{% include 'bank_run_new/Instructions4.html' %} {% elif round_number == 5 %}{% include 'bank_run_new/Instructions5.html' %} {% elif round_number == 6 %}{% include 'bank_run_new/Instructions6.html' %} {% elif round_number == 7 %}{% include 'bank_run_new/Instructions7.html' %} {% elif round_number == 8 %}{% include 'bank_run_new/Instructions8.html' %} {% else %} {% include 'bank_run_new/Instructions9.html' %} {% endif %} {% endblock %}