{% extends "global/Page.html" %}
{% load otree static %}
{% block title %}
Voting (Round {{round_number}} of {{num_rounds}})
{% endblock %}
{% block content %}
{% include "global/Preferences.html" %}
Please vote to eliminate one of the alternatives below.
The alternative that receives the greatest number of votes will be eliminated.
The eliminated alternative in the previous voting stage is
{% if eliminated == "blue" %}
{{eliminated}}
{% elif eliminated == "green" %}
{{eliminated}}
{% elif eliminated == "purple" %}
{{eliminated}}
{% elif eliminated == "orange" %}
{{eliminated}}
{% endif %}
Select the alternative you would like to vote to eliminate
{% if numeric_options.0 == 1 %}
{{options.0}}
{% elif numeric_options.0 == 2 %}
{{options.0}}
{% elif numeric_options.0 == 3 %}
{{options.0}}
{% elif numeric_options.0 == 4 %}
{{options.0}}
{% endif %}
{% if numeric_options.1 == 1 %}
{{options.1}}
{% elif numeric_options.1 == 2 %}
{{options.1}}
{% elif numeric_options.1 == 3 %}
{{options.1}}
{% elif numeric_options.1 == 4 %}
{{options.1}}
{% endif %}