{% extends "global/Page.html" %} {% load otree static %} {% block title %} Voting (Round {{round_number}} of {{num_rounds}}) {% endblock %} {% block content %} {% include "global/Preferences.html" %} Two of the four alternatives have 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.0 == 'blue' %} {% elif eliminated.0 == 'green' %} {% elif eliminated.0 == 'purple' %} {% elif eliminated.0 == 'orange' %} {% endif %} {% if eliminated.1 == 'blue' %} {% elif eliminated.1 == 'green' %} {% elif eliminated.1 == 'purple' %} {% elif eliminated.1 == '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 %}
The randomly eliminated alternatives in the previous stage are {{eliminated.0}} {{eliminated.0}} {{eliminated.0}} {{eliminated.0}} {{eliminated.1}} {{eliminated.1}} {{eliminated.1}} {{eliminated.1}}
Select the alternative you would like to vote to eliminate {% if numeric_options.0 == 1 %} {{options.0}} {% if numeric_options.1 == 1 %} {{options.1}}
{% next_button %}
{% endblock %}