{% extends "platform_demo/bid_template.html" %} {% load otree static %} {% block bid_input %} {% if visibility == "visible" %} {% elif visibility == "secret" %} {% endif %} {% endblock %} {% block bid_title %} {% if player.round_number == 1 %} This is the first round of the dispute resolution procedure {% elif player.round_number == 2 %} This is the second round of the dispute resolution procedure {% elif player.round_number == 3 %} This is the third round of the dispute resolution procedure {% endif %} {% endblock %} {% block bid_background %} {% if player.round_number == 1 %} {% elif player.round_number > 1 %} {% endif %} {% endblock %} {% block bid_move %} {% if player.round_number == 1 and visibility == "visible" %} Please move the slider to make your first visible claim {% elif player.round_number == 1 and visibility == "secret" %} Please move the slider to make your first invisible claim {% elif player.round_number == 2 and visibility == "visible" %} Please move the slider to make your second visible claim {% elif player.round_number == 3 and visibility == "visible" %} Please move the slider to make your third visible claim {% elif player.round_number == 2 and visibility == "secret" %} Please move the slider to make your second invisible claim {% elif player.round_number == 3 and visibility == "secret" %} Please move the slider to make your third invisible claim {% endif %} {% endblock %} {% block bid_cake %}
{% if player.round_number == 1 and visibility == "visible" %}
{% elif player.round_number == 1 and visibility == "secret" %}
{% elif player.round_number > 1 and visibility == "visible" %}
{% elif player.round_number > 1 and visibility == "secret" %}
{% endif %}
{% endblock %} {% block bid_value_visible %} {% if player.round_number == 1%} Value of your 1st visible claim: {% elif player.round_number == 2 %} Value of your 2nd visible claim: {% elif player.round_number == 3 %} Value of your 3rd visible claim: {% endif %} {% endblock %} {% block bid_value_secret %} {% if player.round_number == 1 and visibility == "secret" %} Value of your 1st invisible claim: {% elif player.round_number == 2 and visibility == "secret" %} Value of your 2nd invisible claim: {% elif player.round_number == 3 and visibility == "secret" %} Value of your 3rd invisible claim: {% endif %} {% endblock %} {% block button_submit %} {% endblock %}