{% endif %}
{% if not answer_count %}
{% trans "Nobody has answered this question at the moment." %}
{% else %}
{% if missing_answers %}
{% blocktrans with count=question.answers.count|times missing=missing_answers trimmed %}
This question has been answered {{ count }}, {{ missing }} answers are still missing.
{% endblocktrans %}
{% else %}
{% blocktrans with count=question.answers.count|times trimmed %}
This question has been answered {{ count }}, and no answers are missing.
{% endblocktrans %}
{% endif %}