{% extends "global/Page.html" %} {% load otree static %} {% block title %} Voting (Round {{round_number}} of {{num_rounds}}) {% endblock %} {% block content %} {% include "global/Preferences.html" %} One of the four alternatives has been randomly eliminated.
Please vote to eliminate one of the remaining alternatives below.
The alternative that receives the greatest number of votes will be eliminated.

{% if eliminated == 'blue' %} {% elif eliminated == 'green' %} {% elif eliminated == 'purple' %} {% elif eliminated == 'orange' %} {% endif %} {% elif numeric_options.0 == 2 %} {{options.0}} {% elif numeric_options.0 == 3 %} {{options.0}} {% elif numeric_options.0 == 4 %} {{options.0}} {% endif %} {% elif numeric_options.1 == 2 %} {{options.1}} {% elif numeric_options.1 == 3 %} {{options.1}} {% elif numeric_options.1 == 4 %} {{options.1}} {% endif %} {% elif numeric_options.2 == 2 %} {{options.2}} {% elif numeric_options.2 == 3 %} {{options.2}} {% elif numeric_options.2 == 4 %} {{options.2}} {% endif %}
The randomly eliminated alternative in the previous stage is {{eliminated}} {{eliminated}} {{eliminated}} {{eliminated}}
Select the alternative you would like to vote to eliminate {% if numeric_options.0 == 1 %} {{options.0}} {% if numeric_options.1 == 1 %} {{options.1}} {% if numeric_options.2 == 1 %} {{options.2}}
{% next_button %}
{% endblock %}