{% load evaluation_filters %} {% if weight_info %}

{% blocktrans with percentage=weight_info %}This evaluation contributes {{ percentage }} to the final grade of the course.{% endblocktrans %}

{% endif %} {% if question_result %} {% if question_result.warning %}

{% trans '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.counts|zip_choices:question_result.choices %} {{ name }}: {{ count }}/{{ question_result.count_sum }} ({{ count|percentage_one_decimal:question_result.count_sum }}) {% if not forloop.last %}
{% endif %} {% endfor %}

{% endwith %} {% endif %}