{% extends "global/Base.html" %} {% load otree_tags %} {% block title %} Your Choice {% endblock %} {% block content %} {% formfield player.withdraw with label='Do you wish to withdraw?' %}
{% 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 %}