{% 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 %} {% else %} {% endif %} {% endblock %} {% block bid_move %} {% if player.round_number == 1 and visibility == "visible" %} Please move the slider to make your first visible offer {% elif player.round_number == 1 and visibility == "secret" %} Please move the slider to make your first invisible offer {% elif player.round_number == 2 and visibility == "visible" %} Please move the slider to make your second visible offer {% elif player.round_number == 2 and visibility == "secret" %} Please move the slider to make your second invisible offer {% elif player.round_number == 3 and visibility == "visible" %} Please move the slider to make your third visible offer {% elif player.round_number == 3 and visibility == "secret" %} Please move the slider to make your third invisible offer {% 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 offer: {% elif player.round_number == 2 %} Value of your 2nd visible offer: {% elif player.round_number == 3 %} Value of your 3rd visible offer: {% endif %} {% endblock %} {% block bid_value_secret %} {% if player.round_number == 1 and visibility == "secret" %} Value of your 1st invisible offer: {% elif player.round_number == 2 and visibility == "secret" %} Value of your 2nd invisible offer: {% elif player.round_number == 3 and visibility == "secret" %} Value of your 3rd invisible offer: {% endif %} {% endblock %} {% block button_submit %} {% endblock %}