{% load evaluation_filters %} {% if weight_info %}
{% blocktranslate with percentage=weight_info %}This evaluation contributes {{ percentage }} to the final grade of the course.{% endblocktranslate %}
{% endif %} {% if question_result %} {% if question_result.warning %}{% translate 'Only a few participants answered this question.' %}
{% endif %} {% with question_result.question.is_bipolar_likert_question as is_bipolar %}{% for count, name, color, value in question_result.zipped_choices %} {{ name }}: {{ count }}/{{ question_result.count_sum }} ({{ count|percentage_one_decimal:question_result.count_sum }}) {% if not forloop.last %}{% endif %} {% endfor %}
{% endwith %} {% endif %}