diff --git a/eosweb/core/templates/question/approval/view.html b/eosweb/core/templates/question/approval/view.html index 4d49030..8aa8929 100644 --- a/eosweb/core/templates/question/approval/view.html +++ b/eosweb/core/templates/question/approval/view.html @@ -16,7 +16,18 @@ along with this program. If not, see . #} -

Approval voting. Vote for between {{ question.min_choices }} and {{ question.max_choices }} choices.{% if question.randomise_choices %} Order of choices is randomised.{% endif %}

+

+ Approval voting. Vote for + {% if question.min_choices == question.max_choices %} + exactly {{ question.min_choices }} + {% else %} + between {{ question.min_choices }} and {{ question.max_choices }} + {% endif %} + choices. + {% if question.randomise_choices %} + Order of choices is randomised. + {% endif %} +