Eos/eosweb/core/static/nunjucks/question/preferential/selections_review.html

47 lines
2.0 KiB
HTML

{#
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 <http://www.gnu.org/licenses/>.
#}
{% set flat_choices = question.flatten_choices() %}
{% if booth.answers[loop.index0].value.choices.length > 0 %}
<div class="ui ordered list">
{% for choice in booth.answers[loop.index0].value.choices %}
<div class="item">
<div class="content">{{ flat_choices[choice].name }}{% if flat_choices[choice].party_or_ticket %} – {{ flat_choices[choice].party_or_ticket }}{% endif %}</div>
</div>
{% endfor %}
</div>
{% else %}
<div class="ui list">
<div class="item">
<i class="warning circle icon"></i>
<div class="content">No choices selected</div>
</div>
</div>
{% endif %}
{% if booth.answers[loop.index0].value.choices.length < question.min_choices %}
<div class="ui error message">
<p>You have selected fewer than the minimum required number of choices. If you proceed to cast this ballot, it will <span class="superem">not</span> be counted. If this was not your intention, please click the ‘Back’ button below now, and correct your selections.</p>
</div>
{% elif booth.answers[loop.index0].value.choices.length < question.max_choices %}
<div class="ui warning message">
<p>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.</p>
</div>
{% endif %}