{# Eos - Verifiable elections Copyright © 2017 RunasSudo (Yingtong Li) This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . #}
{% for choice in booth.answers[loop.index0].value.choices %}
{{ question.choices.__getitem__(choice).name }}{% if question.choices.__getitem__(choice).party %}{{ question.choices.__getitem__(choice).party }}{% endif %}
{% else %}
No choices selected
{% endfor %}
{% if booth.answers[loop.index0].value.choices.length < question.min_choices %}

You have selected fewer than the minimum required number of choices. If you proceed to cast this ballot, it will not be counted. If this was not your intention, please click the ‘Back’ button below now, and correct your selections.

{% elif booth.answers[loop.index0].value.choices.length < question.max_choices %}

You have selected fewer than the maximum allowed number of choices. If this was not your intention, please click the ‘Back’ button below now, and correct your selections.

{% endif %}