{% endif %}
{% if not question.answers.count %}
{% trans "Nobody has answered this question at the moment." %}
{% else %}
{% if question.missing_answers %}
{% blocktrans with count=question.answers.count missing=question.missing_answers trimmed %}
This question has been answered {{ count }} times, {{ missing }} answers are still missing.
{% endblocktrans %}
{% else %}
{% blocktrans with count=question.answers.count trimmed %}
This question has been answered {{ count }} times, and no answers are missing.
{% endblocktrans %}
{% endif %}
{% for answer in question.grouped_answers %}
{% if question.variant == "file" %}
{% if answer.answer.answer_file %}
{{ answer.answer.answer }}
{% else %}
{{ answer.answer.answer }} ({% trans "lost file" %})
{% endif %}
{% else %}
{% if answer.answer %}
{% if question.variant == 'boolean' %}
{% if answer.answer == "True" %}
»{% trans "Yes" %}«:
{% else %}
»{% trans "No" %}«:
{% endif %}
{% else %}
»{{ answer.answer }}«:
{% endif %}
{% elif answer.options %}
»{{ answer.options__answer }}«:
{% else %}
{% trans "Empty answer" %}:
{% endif %}
{{ answer.count }} {% trans "times" %}
{% endif %}